/* ---------- 1 : TOKENS ---------- */
:root{
  /* Colors */
  --lc-charcoal: #242C2E;
  --lc-nearblack: #1A1E1F;
  --lc-orange: #EF6430;
  --lc-orange-hover: #D45729;
  --lc-grey90: #434748;
  --lc-grey70: #7F8185;
  --lc-grey40: #C3C5C7;
  --lc-grey10: #F5F6F6;
  --lc-success: #2BB673;
  --lc-warning: #FFB30F;
  --lc-error: #E03C31;
  --lc-white: #fff;
  --lc-black: #000;
  
  /* Layout */
  --container-max: 1280px;
  --container-padding: 1.5rem;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--lc-charcoal);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lc-charcoal);
  text-align: center;
  margin-bottom: 1.5rem;
}

h1{font-size:3.75rem;line-height:1.25}   /* 60 px */
h2{font-size:2.875rem;line-height:1.25}  /* 46 px */
h3{font-size:2rem;line-height:1.25}      /* 32 px */
p{
  font-size:1.125rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}
li{font-size:1.125rem}
small{font-size:.75rem}

/* ---------- 3 : HEADER & NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--lc-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  flex: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--lc-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wordmark:hover {
  color: var(--lc-orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: var(--lc-black);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--lc-orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--lc-black);
}

/* ---------- 4 : PRIMARY BUTTON ---------- */
.btn-primary, .button-primary, a.btn-primary {
  display: inline-block;
  background: var(--lc-orange);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--lc-orange-hover);
}

/* Auto-upgrade any MC-generated buttons (Mailchimp uses .button) */
button, .button{
  background:var(--lc-orange);
  color:var(--white);
  padding:14px 28px;
  border:none;
  border-radius:6px;
  font-family:Inter,sans-serif;
  font-weight:600;
  cursor:pointer;
  transition:background .2s;
}
button:hover,.button:hover{background:var(--lc-orange-hover)}

/* ---------- 5 : SECTIONS ---------- */
section{
  padding:120px 5%;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
section > *:not(.alt-bg){
  max-width:1160px;
  margin-left:auto;
  margin-right:auto;
}
.alt-bg{
  background:var(--lc-grey10);
  width: 100%;
}
#hero{
  padding-top: 160px;
  padding-bottom: 160px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#hero h1{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 6 : CARDS / KPI BADGE ---------- */
.card{
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.1);
  padding:32px;
  max-width: 600px;
  margin: 0 auto;
}
.card input,
.card select,
.card textarea{
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--lc-grey10);
  border-radius: 4px;
  font-family: Inter, sans-serif;
}
.text-center{text-align:center}

/* ---------- 7 : LISTS ---------- */
section ul{
  max-width: 800px;
  margin: 0 auto;
  list-style-position: inside;
}
section li{
  margin-bottom: 1rem;
}
section li strong{
  color: var(--lc-charcoal);
}

/* ---------- 8 : FOOTER ---------- */
footer{
  padding: 40px 5%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--lc-grey90);
  max-width: 800px;
  margin: 0 auto;
}

footer strong {
  color: var(--lc-charcoal);
}

/* ---------- 9 : RESPONSIVE ---------- */
@media(max-width:768px){
  h1{font-size:2.5rem}
  h2{font-size:2rem}
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lc-white);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-menu.show {
    display: flex;
  }
  
  .nav-menu .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
  }
  section{
    padding: 80px 5%;
  }
  #hero{
    padding: 100px 5%;
  }
} 

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lc-white);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-menu.show {
    display: flex;
  }
  
  .nav-menu .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
  }
} 