:root {
  /* Palette pulled from the HummingBird logo: navy wordmark + magenta/coral/yellow/teal/cyan gradient. */
  --ink: #0f1b2e;
  --muted: #5e6877;
  --line: #e5e9f0;
  --paper: #fffcf8;
  --soft: #fff0f6;
  --white: #ffffff;
  --deep: #0f1b2e;
  --deep-2: #1a2840;
  --accent: #e91e8c;
  --accent-2: #f25e45;
  --teal: #1fb6b7;
  --cyan: #16a5e5;
  --yellow: #fbba1b;
  --shadow: 0 18px 50px rgba(15, 27, 46, 0.16);
  --logo-gradient: linear-gradient(135deg, #e91e8c 0%, #f25e45 28%, #fbba1b 56%, #1fb6b7 82%, #16a5e5 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 252, 248, 0.94);
  border-bottom: 3px solid transparent;
  border-image: var(--logo-gradient) 1;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

/* In-content text links: underlined so users see they're interactive. */
.feature-card a,
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.feature-card a:hover,
.text-link:hover {
  text-decoration-thickness: 3px;
  color: var(--accent);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta,
.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--deep);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 6vw, 96px) clamp(28px, 4vw, 56px);
  background:
    linear-gradient(135deg,
      rgba(233, 30, 140, 0.07) 0%,
      rgba(242, 94, 69, 0.05) 28%,
      rgba(251, 186, 27, 0.05) 56%,
      rgba(31, 182, 183, 0.06) 82%,
      rgba(22, 165, 229, 0.08) 100%),
    var(--paper);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--deep);
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--deep);
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.lede,
.page-hero p,
.intro-grid p,
.content-panel p,
.resource-band p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.cred-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: var(--deep);
  color: var(--white);
}

.cred-strip span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 96px);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.price-card,
.service-row,
.one-sheet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(22, 48, 44, 0.07);
}

.feature-card {
  padding: 26px;
}

.feature-card p,
.price-card p,
.service-row p,
.topic-list p,
.copy-stack p {
  color: var(--muted);
}

.feature-card a,
.text-link {
  color: var(--teal);
  font-weight: 800;
}

.split-section,
.page-hero.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 16%;
}

.content-panel {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.dark-band {
  background: var(--deep);
  color: var(--white);
}

.dark-band h2,
.dark-band h3,
.dark-band .eyebrow {
  color: var(--white);
}

.dark-band .eyebrow {
  opacity: 0.78;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.topic-list article,
.feature-card.dark {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.topic-list article::before,
.feature-card.dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--logo-gradient);
}

.topic-list p,
.feature-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 24px;
}

.price-card span,
.service-price span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.resource-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--soft);
}

.resource-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.testimonial-section {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

blockquote {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
}

.testimonial-section p {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.final-cta {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 6vw, 96px);
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid transparent;
  border-image: var(--logo-gradient) 1;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.page-hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 6vw, 96px);
  background: var(--soft);
}

.page-hero.compact {
  max-width: none;
  text-align: center;
}

.page-hero.compact p {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero.about-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 24px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
}

.service-price {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 22px;
  background: var(--soft);
  border-radius: 8px;
}

.service-price strong {
  color: var(--deep);
  font-size: 2rem;
  line-height: 1;
}

.service-price small {
  color: var(--muted);
  font-weight: 700;
}

.copy-stack {
  display: grid;
  gap: 12px;
}

.media-kit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
}

.one-sheet-card {
  padding: clamp(24px, 4vw, 44px);
}

.one-sheet-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.download-list a:hover {
  border-color: var(--teal);
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro-grid,
  .split-section,
  .page-hero.about-hero,
  .resource-band,
  .media-kit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .brand span {
    white-space: normal;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .resource-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card-grid.three,
  .topic-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero-media {
    min-height: 340px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-cta,
  .final-cta {
    display: none;
  }

  body {
    background: white;
  }

  .section,
  .page-hero {
    padding: 24px;
  }
}
