*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #F8F7F3;
  --text: #111110;
  --text-muted: #6B6860;
  --text-light: #9C9890;
  --accent: #E04E1F;
  --border: #E4E1D8;
  --pride-gradient: linear-gradient(
    to right,
    #FF0018 0%,    #FF0018 12.5%,
    #FF8C00 12.5%, #FF8C00 25%,
    #FFD700 25%,   #FFD700 37.5%,
    #008026 37.5%, #008026 50%,
    #004DFF 50%,   #004DFF 62.5%,
    #750787 62.5%, #750787 75%,
    #55CDFC 75%,   #55CDFC 87.5%,
    #F7A8B8 87.5%, #F7A8B8 100%
  );
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── PRIDE STRIPE ── */
.pride-stripe { height: 5px; background: var(--pride-gradient); }

/* ── SITE HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  background: var(--bg);
}

body { padding-top: 70px; }

.nav-logo { font-size: 18px; font-weight: 900; letter-spacing: -0.025em; }
.nav-logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-link:hover { color: var(--text); }

.nav-divider { width: 1px; height: 20px; background: var(--border); }

.nav-login {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 7px 16px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.nav-login:hover { opacity: 0.88; }

.nav-cta-wrapper { display: flex; align-items: center; gap: 12px; }

/* ── HERO (HOMEPAGE) ── */
.hero {
  padding: 80px 48px 88px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

.hero-text {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 36px;
  border: 3px solid var(--border);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero-belief {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-belief em {
  font-style: italic;
  color: var(--text-muted);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  transition: opacity 0.2s;
  width: fit-content;
}
.hero-cta:hover { opacity: 0.88; }

/* ── STORY MICRO ── */
.story-micro {
  padding: 48px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.story-micro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.story-micro-inner p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

.story-micro-inner em { font-style: italic; color: var(--text); }

/* ── LEAD MAGNET ── */
.lead-section {
  padding: 80px 48px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.lead-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lead-inner .section-label { margin-bottom: 20px; }

.lead-inner h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead-inner .lead-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.lead-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.lead-form input[type="email"] {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input[type="email"]::placeholder { color: var(--text-light); }
.lead-form input[type="email"]:focus { border-color: var(--accent); }

.lead-form button {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.lead-form button:hover { opacity: 0.88; }

.lead-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ── OFFERINGS PREVIEW ── */
.preview-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.preview-inner { max-width: 1000px; margin: 0 auto; }

.preview-header { margin-bottom: 40px; text-align: center; }

.preview-header h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.preview-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.preview-card:last-child { border-right: none; }

.preview-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.preview-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.preview-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.preview-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid rgba(224, 78, 31, 0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s;
}
.preview-link:hover { opacity: 0.75; }

/* ── STATS STRIP ── */
.story-stats {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.story-stat {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}

.story-stat:last-child { border-right: none; }

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}

.story-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.story-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.story-text p:last-of-type { margin-bottom: 0; }
.story-text em { font-style: italic; color: var(--text); }

.fact-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
}

.fact-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
  margin-top: 6px;
}


/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 32px 48px; }

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo { font-size: 18px; font-weight: 900; letter-spacing: -0.025em; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

.footer-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-links svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-copy { font-size: 12px; color: var(--text-light); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
}

@media (max-width: 960px) {
  .story-stats { grid-template-columns: 1fr 1fr; }
  .story-stat { border-right: none; border-bottom: 1px solid var(--border); }

  .hero { padding: 60px 32px 68px; }
  .story-micro { padding: 40px 32px; }
  .lead-section { padding: 60px 24px; }
  .preview-section { padding: 60px 24px; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-card { border-right: none; border-bottom: 1px solid var(--border); }
  .preview-card:last-child { border-bottom: none; }

  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  footer { padding: 28px 24px; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 14px; }
  .nav-link { font-size: 13px; }

  .story-stats { grid-template-columns: 1fr 1fr; }
  .story-stat { padding: 32px 20px; }

  .hero { padding: 52px 20px 60px; }
  .hero-belief { font-size: 26px; }
  .story-micro { padding: 32px 20px; }
  .lead-section { padding: 52px 20px; }
  .lead-form { flex-direction: column; }
  .lead-form button { width: 100%; }
  .preview-section { padding: 52px 20px; }
  .preview-card { padding: 32px 24px; }

  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-social-label { display: none; }
  .footer-links { gap: 16px; }
}

@media (max-width: 400px) {
  .fact-num { font-size: 36px; }
}
