:root {
  --blue: #1E3A5F;
  --gold: #D4AF37;
  --text: #2B2B2B;
  --muted: #6B7280;
  --background: #F9F9F9;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
}

/* Header */

#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

[data-include="/partials/header.html"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

body {
  padding-top: 93px;
}
.site-header {
  width: 100%;
  padding: 1rem 0;
  background: rgba(249, 249, 249, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header-inner {
  width: min(92%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--gold);
}

/* Main Layout */

.container {
  width: min(90%, 820px);
  margin: 0 auto;
}

.coming-soon {
  min-height: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 3rem 0 1rem;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/png/tblogo-512x512.png");
  background-repeat: no-repeat;
  background-position: center 80px;
  background-size: 500px;
  opacity: 0.018;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 350px;
  height: 350px;
  transform: translateX(-50%);
  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.05) 0%,
      rgba(212, 175, 55, 0.02) 40%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.85rem;
}

h1 {
  margin: 1rem 0;
  color: var(--blue);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.lead {
  font-size: 1.35rem;
  color: var(--blue);
}

p {
  font-size: 1.08rem;
}

/* Launching Soon */

.launching-soon {
  margin: 2.75rem auto;
  text-align: center;
}

.launching-line {
  width: 180px;
  height: 3px;
  margin: 0 auto 1.25rem;
  background: var(--gold);
  border-radius: 999px;
}

.launching-text {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1rem;
  font-weight: 700;
}

.launching-subtitle {
  margin: 1rem 0 1.5rem;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Signup Box */

.signup-box {
  max-width: 760px;
  margin: 1.75rem auto;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.08);
}

.signup-box h2 {
  margin-top: 0;
  color: var(--blue);
}

.mc-form {
  width: 100%;
  margin-top: 1.5rem;
  text-align: left;
}

.mc-card {
  display: grid;
  gap: 1rem;
}

.mc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.mc-field {
  display: grid;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.mc-field > span {
  display: inline-block;
}

.mc-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font: inherit;
}

.mc-field input:focus {
  outline: 2px solid rgba(212, 175, 55, 0.35);
  border-color: var(--gold);
}

.mc-hidden {
  position: absolute;
  left: -5000px;
}

.mc-consent label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
}

.mc-consent input {
  margin-top: 0.3rem;
}

.mc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.mc-actions button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.mc-fine {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Buttons */

.button {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.button.primary {
  background: var(--blue);
  color: white;
}

/* Founder */

.founder {
  margin: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-hero .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.founder-photo-wrap {
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
}

.founder-photo {
  width: min(260px, 70vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.16);
}

/* CTA */

.cta {
  padding: 3rem 0 4rem;
}

.cta .button {
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  padding: 3rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
  background: var(--background);
  border-top: 1px solid #E5E7EB;
}

.site-footer-inner {
  width: min(90%, 900px);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 1.25rem;
}

.footer-logo {
  display: block;
  width: 64px;
  max-width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.footer-tagline {
  margin: 0;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-nav,
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.footer-nav a,
.footer-social a,
.footer-nav a:visited,
.footer-social a:visited {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--gold);
}

.footer-address p {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Mobile */

@media (max-width: 768px) {

  body {
    padding-top: 84px;
  }

  .site-header {
    padding: 0.9rem 0;
  }

  .cta {
    padding: 2.5rem 0 4rem;
  }
	
  .site-header-inner {
    width: min(90%, 680px);
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-brand {
    gap: 0.65rem;
    font-size: 1.1rem;
  }

  .site-logo {
    width: 54px;
    height: 54px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    z-index: 1000;
    width: 220px;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.16);
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    font-size: 1.1rem;
  }

  .hero {
    padding: 2.5rem 0 1rem;
  }

  .hero::before {
    background-size: 420px;
    background-position: center 110px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 1.22rem;
    line-height: 1.55;
  }

  p {
    font-size: 1.02rem;
  }

  .launching-soon {
    margin: 2.25rem auto;
  }

  .signup-box {
    padding: 1.5rem;
  }

  .mc-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-photo {
    width: min(230px, 70vw);
  }
}

/* Impact Section */

.impact-section {
  background: var(--white);
  padding: 1.0rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.impact-card {
  padding: 1.5rem;
  background: var(--background);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(30, 58, 95, 0.06);
}

.impact-number {
  display: block;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.impact-label {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
