/* =========================
   RESET & BASE
========================= */

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #243352;
  background-color: #F5F7FA;
  line-height: 1.6;
}

/* =========================
   HEADER (LIKE TANGERINE.AI)
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(36, 51, 82, 0.06);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 90px;
  width: auto;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(36, 51, 82, 0.55),
    rgba(36, 51, 82, 0.35)
  );
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  color: #FFFFFF;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* =========================
   CTA BUTTONS
========================= */

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #FFFFFF;
  color: #243352;
}

.btn.primary:hover {
  background: #E6ECEF;
}

.btn.secondary {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   CONTENT SECTIONS
========================= */

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.content.alt {
  background: #FFFFFF;
  max-width: none;
}

.content img {
  width: 50%;
  border-radius: 6px;
  object-fit: cover;
}

.content h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.content p {
  margin-bottom: 14px;
}

/* =========================
   GRID LIST (AUDIENCE)
========================= */

.grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.grid li {
  background: #F5F7FA;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #243352;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 900px) {
  .content {
    flex-direction: column;
    padding: 60px 20px;
  }

  .content img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.cta-row { display:flex; gap:12px; flex-wrap:wrap; }

.cta {
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
}

.cta:focus-visible { outline:2px solid currentColor; outline-offset:3px; }

/* Put this near your global/button styles */
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 16px;
  border-radius:999px;

  color:#fff;                 /* keep white text */
  text-decoration:none;
  font-weight:600;
  line-height:1;
  white-space:nowrap;

  background: rgba(0,0,0,0.55);         /* readable over photos */
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.cta-btn:hover{
  background: rgba(0,0,0,0.70);
  transform: translateY(-1px);
}

.cta-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}
.cta-btn--filled{
  background: currentColor;
  color: #fff; /* if your site supports CSS variables, replace with var(--bg) / var(--surface) etc */
  border-color: transparent;
}
