/* Base */
:root {
  --bg: #0c1714;
  --bg-2: #0f211c;
  --text: #e8f0ed;
  --muted: #b6c3be;
  --subtle: #a5b3ae;
  --brand: #3de0c2;
  --brand-2: #89ffe8;
  --chip: #113a32;
  --card: #0f1916;
  --card-2: #0d1412;
  --ink: #0a0e0d;
  --surface: #eef3f1;
  --shadow: 0 10px 24px rgba(0,0,0,.35);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;

  /* Typography scale */
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 28px;
  --text-3xl: 34px;

  /* Line heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  min-height: 100%;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 50%, #000000 100%) no-repeat;
  background-size: 100% 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: transparent;
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body.modal-open { overflow: hidden; }

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(61, 224, 194, 0.5);
}

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Sticky CTA Bar */
.sticky-cta {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  background: rgba(12, 23, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(61, 224, 194, 0.2);
  transition: top 0.3s ease;
}
.sticky-cta.visible {
  top: 0;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.sticky-cta-text {
  color: var(--text);
  font-size: var(--text-base);
}
.sticky-cta-text strong {
  color: var(--brand);
}

/* Header + Nav */
.site-header {
  position: relative;
  background:
    radial-gradient(1500px 750px at 70% 10%, rgba(21, 111, 93, .55), transparent 60%),
    radial-gradient(1150px 750px at 0% 0%, rgba(39, 125, 110, .45), transparent 55%);
  padding-bottom: var(--space-lg);
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: 0;
}

.logo { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.logo-mark {
  width: 22px; height: 22px; position: relative; display: inline-block;
}
.logo-mark::before,
.logo-mark::after { content: ""; position: absolute; background: var(--brand); border-radius: 999px; }
.logo-mark::before { width: 10px; height: 10px; left: 0; top: 6px; }
.logo-mark::after { width: 14px; height: 14px; right: 0; top: 0; filter: drop-shadow(0 0 10px rgba(61,224,194,.6)); }
.logo-text strong { font-weight: 800; letter-spacing: .2px; }
.logo-text em { font-style: normal; color: var(--muted); font-weight: 600; margin-left: 3px; }


/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
}
.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}
.hero-copy h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md);
}
.accent { color: var(--brand); font-weight: 800; }
.u { text-decoration: underline; text-decoration-thickness: .18em; text-underline-offset: 4px; }
.lead {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
  font-size: var(--text-lg);
}

.actions { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: var(--space-sm);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.btn svg { color: currentColor; }
.btn-primary {
  color: #0a1612;
  background: var(--brand);
  box-shadow: 0 6px 20px rgba(61,224,194,.35);
}
.btn-primary:hover {
  background: var(--brand-2);
  box-shadow: 0 8px 24px rgba(61,224,194,.45);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.btn-small {
  padding: 9px 14px;
  font-size: var(--text-base);
  border-radius: 10px;
}
.btn-chip {
  background: var(--brand);
  color: #08221b;
  transition: background .2s ease, transform .15s ease;
}
.btn-chip:hover {
  background: var(--brand-2);
  transform: scale(1.02);
}

.hero-illustration {
  height: 420px; border-radius: 20px; position: relative; overflow: hidden; filter: none;
  background-image: url('herobanner.png');
  background-repeat: no-repeat;
  background-size: contain;      /* fit image inside container */
  background-position: right center; /* align art to the right */
  background-color: transparent; /* let header gradient show through */
  mix-blend-mode: screen;        /* remove black background from image */
}

.cta-bar { background: transparent; }
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: background .2s ease, border-color .2s ease;
}
.cta-wrap:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.cta-text {
  color: var(--text);
  text-align: center;
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
}

/* Exit intent modal */
.exit-intent {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.exit-intent.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.exit-intent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 8, 0.8);
  backdrop-filter: blur(6px);
}

.exit-intent-dialog {
  position: relative;
  max-width: 520px;
  width: 100%;
  background:
    radial-gradient(600px 400px at 80% 0%, rgba(61, 224, 194, 0.18), transparent 70%),
    rgba(12, 23, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: var(--space-lg);
  color: var(--text);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.exit-intent.is-visible .exit-intent-dialog {
  opacity: 1;
  transform: translateY(0);
}

.exit-intent-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.exit-intent-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.exit-intent-content {
  display: grid;
  gap: var(--space-md);
}

.exit-intent-header h2 {
  font-size: clamp(22px, 4vw, 30px);
  margin: 0 0 var(--space-xs);
  line-height: var(--leading-snug);
}

.exit-intent-header p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-md);
}

.exit-intent-form {
  display: grid;
  gap: var(--space-sm);
}

.exit-intent-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xs);
  align-items: center;
}

.exit-intent-control input {
  min-width: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 25, 22, 0.9);
  color: var(--text);
  font-size: var(--text-md);
}

.exit-intent-control input::placeholder {
  color: var(--subtle);
}

.exit-intent-control button {
  padding: 12px 18px;
}

@media (max-width: 640px) {
  .exit-intent-dialog {
    padding: var(--space-md);
  }

  .exit-intent-control {
    grid-template-columns: 1fr;
  }

  .exit-intent-control button {
    width: 100%;
    justify-content: center;
  }
}

/* Intro stats */
.section {
  padding: var(--space-2xl) 0;
}
.section.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.revealed {
  opacity: 1;
  transform: translateY(0);
}
.section-intro {
  position: relative;
}
.section-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(61, 224, 194, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.section-intro h2 { margin: 0 0 var(--space-md); font-size: var(--text-xl); line-height: var(--leading-snug); }
.brand { color: var(--brand); }

.stats-grid { display: grid; gap: var(--space-sm); margin: var(--space-md) 0; }
.stats-grid.top { grid-template-columns: repeat(4, 1fr); }
.stats-grid.mid { grid-template-columns: repeat(4, 1fr); }

.stat {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}
.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }
.stat:nth-child(5) { animation-delay: 0.15s; }
.stat:nth-child(6) { animation-delay: 0.25s; }
.stat:nth-child(7) { animation-delay: 0.35s; }
.stat:nth-child(8) { animation-delay: 0.45s; }
.stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  border-color: rgba(61,224,194,.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat h3 { color: var(--subtle); font-size: var(--text-sm); letter-spacing: .3px; margin: 0 0 var(--space-sm); line-height: var(--leading-snug); }
.stat .value {
  font-size: var(--text-3xl);
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  line-height: 1;
}
.stat .icon {
  font-size: 20px;
  opacity: .8;
}
.stat.small .value {
  font-size: var(--text-2xl);
}
.coming-data {
  font-size: var(--text-base);
  color: var(--muted);
  font-style: italic;
}

.intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); margin-top: var(--space-md); }
.intro-columns p { margin: 0 0 var(--space-sm); color: var(--muted); line-height: var(--leading-relaxed); }
.intro-columns a {
  color: var(--brand-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: all .2s ease;
  border-radius: 2px;
  opacity: 0.9;
}
.intro-columns a:hover {
  opacity: 1;
  color: var(--brand-2);
  text-decoration-thickness: 2px;
  filter: drop-shadow(0 0 8px rgba(137, 255, 232, 0.4));
}
.intro-columns a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Discover pills */
.discover {
  padding: var(--space-2xl) 0 var(--space-3xl) 0;
  position: relative;
}
.discover-inner {
  background: linear-gradient(145deg, #dde9e4 0%, #c6d7d1 100%);
  color: #0c1613;
  border-radius: 26px;
  padding: var(--space-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
  text-align: center;
  border: 1px solid rgba(255,255,255,.55);
  position: relative;
  overflow: visible;
}
.discover h3 { margin: 0 0 var(--space-md); font-size: var(--text-xl); line-height: var(--leading-snug); font-weight: 700; }
.brand-underline { border-bottom: 3px solid #0a9f88; }
.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  text-align: left;
}
.discover-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  color: #0b1915;
  text-decoration: none;
  border: 1px solid rgba(12,25,21,.08);
  box-shadow: 0 16px 26px rgba(12,25,21,.12);
  transition: box-shadow .2s ease, transform .2s ease;
  min-height: 170px;
  position: relative;
}
.discover-card:hover {
  box-shadow: 0 20px 36px rgba(12,25,21,.16);
  transform: translateY(-2px);
}
.discover-card:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}
.card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(15, 100, 85, 0.9);
  color: #fff;
  font-size: var(--text-xs);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(15, 100, 85, 0.3);
}
.card-badge.popular {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.discover-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(16, 64, 55, .12);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.discover-icon svg { width: 34px; height: 34px; }
.discover-copy h4 {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-lg);
  color: #0c1915;
  line-height: var(--leading-snug);
}
.discover-copy p {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: #31403b;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  margin: 0 auto var(--space-md);
  border-radius: 999px;
  background: var(--brand);
  color: #08221b;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(61,224,194,.28);
}

/* Newsletter */
.newsletter {
  background: transparent;
  position: relative;
  padding-bottom: var(--space-lg);
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(61, 224, 194, 0.03) 1px, transparent 0);
  background-size: 60px 60px;
  pointer-events: none;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-lg) var(--space-md);
}
.newsletter-inner .left { flex: 1; }
.newsletter h2 {
  margin: 0 0 var(--space-sm);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
}
.newsletter p { color: var(--muted); margin: 0; }
.signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}
.signup-control {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  background: rgba(245, 247, 246, 0.9);
  border-radius: 18px;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: inset 0 0 0 1px rgba(12,25,21,.05);
}
.signup-control input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #0a0f0d;
  outline: none;
}
.signup-control input:focus {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}
.signup-control input::placeholder {
  color: #767d7a;
  font-style: italic;
}
.signup-btn {
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
}
.signup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.signup .visually-hidden { display: none; }
.honeypot { position: absolute; left: -5000px; }
.mailchimp-response {
  flex: 1 1 100%;
  min-height: 0;
  font-size: var(--text-sm);
  color: var(--brand);
  margin-top: var(--space-sm);
  text-align: left;
  align-self: stretch;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
}
#mce-error-response {
  color: #f87171;
}
.mailchimp-response.is-success {
  color: var(--brand);
  background: rgba(61, 224, 194, 0.1);
  border: 1px solid rgba(61, 224, 194, 0.3);
}
.mailchimp-response.is-error {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
}
#mce-success-response.is-success {
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 2px solid #050808;
  margin-left: -12px;
}
.avatar:first-child {
  margin-left: 0;
}
.avatar:nth-child(1) {
  background: linear-gradient(135deg, #3de0c2, #89ffe8);
}
.avatar:nth-child(2) {
  background: linear-gradient(135deg, #1aa086, #3de0c2);
}
.avatar:nth-child(3) {
  background: linear-gradient(135deg, #0f6455, #1aa086);
}
.avatar:nth-child(4) {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.proof-text {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}
.proof-text strong {
  color: var(--brand);
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  background: transparent;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  margin-bottom: var(--space-xs);
}
.section-header h2 {
  font-size: var(--text-xl);
  margin: 0;
  line-height: var(--leading-snug);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: var(--space-lg);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  border-color: rgba(61,224,194,.15);
}
.quote-icon {
  font-size: 64px;
  line-height: 1;
  color: rgba(61, 224, 194, 0.15);
  font-family: Georgia, serif;
  margin-bottom: var(--space-sm);
}
.testimonial-text {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--muted);
  margin: 0 0 var(--space-lg);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 2px solid rgba(61, 224, 194, 0.2);
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name {
  font-size: var(--text-base);
  color: var(--text);
  font-weight: 700;
}
.author-role {
  font-size: var(--text-sm);
  color: var(--subtle);
}

/* Insights */
.insights { background: transparent; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.see-all { color: #dfe7e4; text-decoration: none; opacity: .8; }
.insights-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 16px; }
.insight { background: #f0f4f2; color: #0c1411; border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: 160px auto; box-shadow: var(--shadow); }
.insight.highlight { grid-row: span 2; grid-template-rows: 220px auto; }
.thumb { background: #d9e5df; }
.thumb.map { background-image: url('Homepage.png'); background-size: 750px auto; background-position: left -40px top -1090px; filter: grayscale(.1) contrast(1.05); }
.thumb.photo { background-image: linear-gradient(160deg, #1a2e2a, #1a2e2a), url('Homepage.png'); background-size: cover; background-position: center; }
.thumb.city { background-image: linear-gradient(160deg, #1a2e2a, #1a2e2a), url('Homepage.png'); background-size: cover; background-position: 60% 40%; }
.thumb.port { background-image: linear-gradient(160deg, #1a2e2a, #1a2e2a), url('Homepage.png'); background-size: cover; background-position: 50% 80%; }
.meta { padding: 14px; }
.meta h3 { margin: 2px 0 8px; font-size: 18px; }
.date { color: #6a7672; font-size: 12px; margin-bottom: 8px; }
.meta p { color: #2a3a35; margin: 0 0 8px; }
.source { display: inline-flex; align-items: center; gap: 6px; color: #52635f; font-size: 12px; }
.source::before { content: "•"; color: #84b3a5; }

/* Footer */
.site-footer { background: transparent; color: #b7c4bf; padding: var(--space-md) 0 var(--space-lg); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); align-items: end; }
.footer-left { display: flex; flex-direction: column; gap: var(--space-sm); justify-content: flex-end; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-text strong { font-weight: 800; color: #e8f0ed; }
.footer-text em { font-style: normal; color: #93a39d; margin-left: 4px; }
.footer-subtext { color: #93a39d; font-size: 16px; line-height: 1.6; display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-logo-inline { display: inline-flex; align-items: center; }
.footer-logo-inline img { display: block; height: 22px; width: auto; filter: drop-shadow(0 0 6px rgba(0,0,0,.2)); }
.footer-logo-inline--hubid img { height: 26px; }
.footer-logo-inline--tia img { height: 22px; }
.footer-call {
  color: #93a39d;
  font-size: 16px;
  line-height: 1.6;
  margin: var(--space-md) 0 0;
  text-align: right;
}
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-sm); text-align: right; }
.footer-link {
  color: #b7c4bf;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.footer-link:hover {
  color: #e8f0ed;
}
.copyright { color: #6e7e79; font-size: 12px; }

/* Responsive */
@media (max-width: 1000px) {
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight.highlight { grid-row: auto; grid-column: span 2; }
  .discover-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container {
    padding-inline: var(--space-sm);
  }

  .hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .lead {
    font-size: var(--text-md);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section.newsletter {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .stats-grid.top, .stats-grid.mid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .stat {
    padding: var(--space-sm);
  }

  .stat h3 {
    font-size: var(--text-xs);
  }

  .stat .value {
    font-size: var(--text-2xl);
  }

  .stat.small .value {
    font-size: var(--text-xl);
  }

  .intro-columns {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .discover {
    padding: var(--space-xl) 0;
  }

  .discover-inner {
    padding: var(--space-md);
    border-radius: 0;
  }

  .discover h3 {
    font-size: var(--text-lg);
  }

  .discover-card {
    flex-direction: column;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-sm) var(--space-sm) var(--space-xs);
    gap: var(--space-xs);
  }

  .newsletter h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .signup {
    width: 100%;
    max-width: none;
  }

  .signup-control {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
    background: transparent;
    border-radius: var(--radius);
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .signup-control input {
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(245, 247, 246, 0.92);
    padding: 14px var(--space-sm);
  }

  .signup-btn {
    width: 100%;
    text-align: center;
    border-width: 0;
    border-radius: var(--radius);
    padding: 13px var(--space-sm);
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    flex-direction: column;
    border-radius: 0;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-footer {
    padding-top: var(--space-xs);
  }

  .footer-left,
  .footer-right {
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
  }

  .footer-subtext {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
    align-items: center;
  }

  .footer-call {
    text-align: center;
  }

  .sticky-cta-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .sticky-cta-text {
    font-size: var(--text-sm);
  }

  .actions {
    flex-direction: column;
    width: 100%;
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    padding: var(--space-md);
  }

  .quote-icon {
    font-size: 48px;
  }

  .testimonial-text {
    font-size: var(--text-base);
  }
}
