:root {
  --paper: #F4F1EA;
  --section: #EBEAE5;
  --card: #FFFFFF;
  --ink: #26302C;
  --text: #2C312F;
  --muted: #747A77;
  --accent: #4E6F64;
  --gum: #879B92;
  --line: #D9D6CE;
  --highlight: #A88E5A;
  --hero-dark: #102D27;
  --hero-dark-2: #163B33;
  --shadow: rgba(38, 48, 44, 0.10);
  --shadow-soft: rgba(38, 48, 44, 0.055);
  --radius-lg: 28px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Keep in-page link destinations clear of the sticky header. */
[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(135, 155, 146, 0.16), transparent 30rem),
    linear-gradient(180deg, #F8F6F1 0%, var(--paper) 42%, #F0EEE7 100%);
  color: var(--text);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 214, 206, 0.9);
}

.nav {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-icon {
  display: none !important;
}

.brand-mark {
  color: var(--ink);
  font-weight: 850;
  font-size: 1.38rem;
  letter-spacing: -0.045em;
}

.brand-mark span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 52px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 20px;
  bottom: 26px;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(16,45,39,0.94) 0%, rgba(16,45,39,0.82) 45%, rgba(244,241,234,0.10) 100%),
    url("assets/brand/landscape-dark.png") center bottom / cover no-repeat,
    linear-gradient(135deg, var(--hero-dark), var(--hero-dark-2));
  border-top: 1px solid rgba(217, 214, 206, 0.35);
  border-bottom: 1px solid rgba(217, 214, 206, 0.55);
}

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

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  color: #DCE6DD;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #F8F6F1;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 690px;
  color: rgba(248,246,241,0.84);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: #F8F6F1;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.button.primary:hover {
  background: #FFFFFF;
}

.button.secondary {
  color: #F8F6F1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel {
  justify-self: end;
  width: min(420px, 100%);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.hero-brand-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

main {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.section-header {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-lede {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 790px;
}

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

.card {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 46px var(--shadow-soft);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.14rem;
  letter-spacing: -0.025em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.method-summary-grid {
  margin-top: 28px;
  margin-bottom: 28px;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 38px var(--shadow-soft);
}

.method-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 15px;
  background: var(--section);
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.method-item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.method-item p {
  margin: 0;
  color: var(--muted);
}

.notice {
  background: linear-gradient(145deg, rgba(235,234,229,0.9), rgba(255,255,255,0.72));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 46px var(--shadow-soft);
}

.notice h3 {
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.notice p {
  margin: 0;
  color: var(--muted);
}

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

.status-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gum);
}

.status-item strong {
  color: var(--ink);
}

.status-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-card {
  background:
    linear-gradient(145deg, rgba(135,155,146,0.18), rgba(255,255,255,0.78));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 20px 60px var(--shadow-soft);
}

.contact-card p {
  color: var(--muted);
  max-width: 760px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 850;
}

.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(235,234,229,0.72);
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-panel {
    justify-self: start;
    max-width: 340px;
  }

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

  .method-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main,
  .hero,
  .nav,
  .footer-inner {
    width: min(100% - 28px, var(--max-width));
  }

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

  .button {
    width: 100%;
  }
}

/* Refinement pass: calmer hero, readable labels, visible brand icon */

/* Header icon */
.brand {
  gap: 10px !important;
}

.brand-icon {
  display: block !important;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
}

/* Hero spacing and headline scale */
.hero {
  padding-top: 118px !important;
  padding-bottom: 86px !important;
}

.hero h1,
h1 {
  font-size: clamp(2.7rem, 5.45vw, 5.45rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.058em !important;
  max-width: 820px;
}

/* Hero text legibility */
.hero .hero-lede,
.hero-lede {
  color: rgba(248, 246, 241, 0.90) !important;
  max-width: 760px;
  font-weight: 500;
}

.hero .hero-lede p,
.hero p {
  color: rgba(248, 246, 241, 0.90);
}

/* Hero status/eyebrow pill */
.hero .eyebrow,
.eyebrow {
  color: #F4F1EA !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* Add a subtle brand motif near the hero copy */
.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 86px;
  height: 54px;
  margin-bottom: 24px;
  background: url("assets/brand/symbol-over-dotted-hills.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

/* Make section kicker labels readable */
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--accent) !important;
  background: rgba(235, 234, 229, 0.92) !important;
  border: 1px solid rgba(217, 214, 206, 0.96) !important;
  border-radius: 999px;
  padding: 8px 14px;
  line-height: 1;
}

/* Subtle visual marks on summary cards */
.card {
  position: relative;
}

.method-summary-grid .card::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(78, 111, 100, 0.85) 0 3px, transparent 4px),
    rgba(235, 234, 229, 0.95);
  border: 1px solid rgba(217, 214, 206, 0.96);
}

/* Method acronym pills slightly stronger */
.method-code {
  background: rgba(235, 234, 229, 0.96) !important;
  border: 1px solid rgba(217, 214, 206, 0.96);
  color: var(--accent) !important;
}

/* Desktop: keep hero text from feeling oversized against the dark field */
@media (min-width: 1100px) {
  .hero h1,
  h1 {
    font-size: 5.2rem !important;
  }
}

/* Mobile adjustments */
@media (max-width: 860px) {
  .hero {
    padding-top: 72px !important;
  }

  .hero-copy::before {
    width: 72px;
    height: 46px;
    margin-bottom: 18px;
  }

  .hero h1,
  h1 {
    font-size: clamp(2.45rem, 11vw, 4.2rem) !important;
  }
}

/* Polish pass: clearer header icon and readable section label pills */

/* Header icon was too subtle at small size */
.site-header .brand-icon {
  display: block !important;
  width: 42px !important;
  height: 42px !important;
  object-fit: cover !important;
  border-radius: 11px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 8px 20px rgba(38,48,44,0.16) !important;
}

.site-header .brand {
  gap: 12px !important;
}

/* Make all non-hero section labels consistently readable */
main .section-kicker,
main .eyebrow,
.section .section-kicker,
.section .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  color: #4E6F64 !important;
  background: rgba(244, 241, 234, 0.96) !important;
  border: 1px solid rgba(199, 196, 188, 0.98) !important;
  border-radius: 999px !important;
  padding: 9px 16px !important;
  line-height: 1 !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.75) inset,
    0 14px 34px rgba(38,48,44,0.09) !important;
}

/* Preserve the hero label styling on the dark landing area */
.hero .eyebrow {
  color: #F4F1EA !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important;
}

/* Slightly reduce any washed-out label state caused by earlier overrides */
.section-header .section-kicker {
  opacity: 1 !important;
  filter: none !important;
}

/* Header mark refinement: local preview */
.site-header .brand-icon {
  display: block !important;
  width: 56px !important;
  height: 38px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.site-header .brand {
  gap: 12px !important;
}

@media (max-width: 640px) {
  .site-header .brand-icon {
    width: 48px !important;
    height: 34px !important;
  }
}

/* Local preview: clearer bird-only header mark */
.site-header .brand {
  gap: 12px !important;
}

.site-header .brand-icon {
  display: none !important;
}

.brand-bird-mark {
  display: inline-block;
  width: 62px;
  height: 38px;
  flex: 0 0 auto;
  background-image: url("assets/brand/symbol-over-dotted-hills.png");
  background-repeat: no-repeat;
  background-size: 92px auto;
  background-position: center 2px;
  filter: contrast(1.12) saturate(0.95);
}

/* Make the text wordmark align nicely with the unboxed bird */
.site-header .brand-mark {
  line-height: 1;
}

/* Local preview: restore hero development note as a floating pill */
.hero-status-pill {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  margin-top: 22px !important;
  padding: 10px 15px;
  color: #F8F6F1 !important;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}

/* Avoid double paragraph spacing if the pill sits inside existing hero copy */
.hero .hero-status-pill {
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .brand-bird-mark {
    width: 54px;
    height: 34px;
    background-size: 82px auto;
  }

  .hero-status-pill {
    font-size: 0.92rem;
  }
}

/* Local preview: text-only header wordmark until a true bird-only mark is exported */
.site-header .brand-icon,
.brand-bird-mark {
  display: none !important;
}

.site-header .brand {
  gap: 0 !important;
}

.site-header .brand-mark {
  display: inline-block !important;
  font-size: 1.42rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
}

/* Local preview: make the development pill subtler than the main hero label */
.hero-status-pill {
  color: rgba(248, 246, 241, 0.82) !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  padding: 9px 14px !important;
}

/* Keep the top hero label stronger and distinct */
.hero .eyebrow {
  color: #F4F1EA !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important;
}

/* Local preview: make development status pill quieter than hero label */
.hero-status-pill {
  color: #26302C !important;
  background: rgba(244, 241, 234, 0.76) !important;
  border: 1px solid rgba(217, 214, 206, 0.62) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10) !important;
  backdrop-filter: blur(10px);
  font-size: 0.92rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  padding: 9px 14px !important;
}

/* Keep the top hero label clearly separate */
.hero .eyebrow {
  color: #F4F1EA !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important;
}

/* Local preview: swap hero pill hierarchy */

/* Top hero label: lighter, more prominent project label */
.hero .eyebrow {
  color: #26302C !important;
  background: rgba(244, 241, 234, 0.78) !important;
  border: 1px solid rgba(244, 241, 234, 0.62) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10) !important;
  backdrop-filter: blur(10px);
}

/* Lower development status: darker, quieter status note */
.hero-status-pill {
  color: rgba(248, 246, 241, 0.78) !important;
  background: rgba(255, 255, 255, 0.065) !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  padding: 9px 14px !important;
}

/* Local preview: status component sublists */
.status-sublist {
  margin: 12px 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.status-sublist li {
  margin: 6px 0;
}

.status-sublist strong {
  color: var(--accent);
  font-weight: 850;
}

/* Local preview: For more information / signup section */
.info-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.info-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 38px var(--shadow-soft);
}

.update-card {
  background:
    linear-gradient(145deg, rgba(235,234,229,0.94), rgba(255,255,255,0.76));
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--section);
  border: 1px solid rgba(217, 214, 206, 0.96);
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.info-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid rgba(78,111,100,0.35);
}

.info-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.primary-info-link {
  border: 1px solid rgba(78,111,100,0.25);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(244,241,234,0.72);
}

.muted-info-link {
  color: var(--muted);
  border-bottom: 0;
}

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

@media (max-width: 560px) {
  .info-card {
    grid-template-columns: 1fr;
  }
}

/* Local preview: Buttondown signup form */
.likelybird-signup-form {
  margin-top: 18px;
}

.likelybird-signup-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.signup-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.likelybird-signup-form input[type="email"] {
  min-width: 0;
  flex: 1 1 auto;
  border: 1px solid rgba(217, 214, 206, 0.98);
  border-radius: 999px;
  padding: 12px 15px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.likelybird-signup-form input[type="email"]:focus {
  border-color: rgba(78,111,100,0.62);
  box-shadow: 0 0 0 4px rgba(78,111,100,0.10);
}

.likelybird-signup-form input[type="submit"] {
  border: 1px solid rgba(78,111,100,0.34);
  border-radius: 999px;
  padding: 12px 17px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.likelybird-signup-form input[type="submit"]:hover {
  background: var(--ink);
}

.signup-note {
  margin-top: 10px !important;
  font-size: 0.88rem;
  color: var(--muted);
}

.buttondown-credit {
  margin-top: 6px !important;
  font-size: 0.78rem;
}

.buttondown-credit a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(91,101,96,0.28);
}

.buttondown-credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 560px) {
  .signup-row {
    flex-direction: column;
  }

  .likelybird-signup-form input[type="submit"] {
    width: 100%;
  }
}

/* Local preview: tighter updates/social section */
.compact-info-grid {
  grid-template-columns: 1.65fr 0.85fr;
  align-items: stretch;
}

.compact-info-grid .update-card {
  grid-row: span 2;
}

.compact-info-grid .social-card,
.compact-info-grid .quiet-card {
  padding: 20px;
}

.compact-info-grid .quiet-card {
  display: block;
  background: rgba(255,255,255,0.48);
  box-shadow: none;
}

.compact-info-grid .quiet-card h3 {
  font-size: 1rem;
}

.compact-info-grid .quiet-card p {
  font-size: 0.94rem;
}

.instagram-icon {
  color: var(--highlight);
}

.social-card .info-link {
  margin-top: 12px;
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .compact-info-grid {
    grid-template-columns: 1fr;
  }

  .compact-info-grid .update-card {
    grid-row: auto;
  }
}

/* Local preview: Instagram icon beside link */
.instagram-link {
  align-items: center;
  gap: 8px;
  border-bottom: 0 !important;
}

.instagram-mini-icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
  color: var(--highlight);
}

.instagram-mini-icon svg {
  display: block;
  width: 21px;
  height: 21px;
}

.instagram-mini-icon rect,
.instagram-mini-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

/* Local preview: keep other channels visually blank for now */
.blank-social-card {
  min-height: 92px;
  background: rgba(255,255,255,0.28) !important;
  border-style: dashed !important;
  box-shadow: none !important;
}

.blank-social-card > div {
  min-height: 40px;
}

/* Local preview: clearer card icons */
.info-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 15px !important;
  background: rgba(244, 241, 234, 0.78) !important;
  border: 1px solid rgba(217, 214, 206, 0.92) !important;
  color: var(--accent) !important;
}

.info-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.info-icon svg rect,
.info-icon svg circle,
.info-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-card-icon {
  color: var(--accent) !important;
}

.instagram-card-icon {
  color: var(--highlight) !important;
}

/* Remove any old duplicate mini Instagram icon styling from the visible link */
.instagram-link {
  gap: 0 !important;
  border-bottom: 1px solid rgba(78,111,100,0.35) !important;
}

.instagram-mini-icon {
  display: none !important;
}

/* Make the blank placeholder less visually demanding */
.blank-social-card {
  min-height: 72px !important;
  opacity: 0.55;
}

/* Local preview: clearer card icons */
.info-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 15px !important;
  background: rgba(244, 241, 234, 0.78) !important;
  border: 1px solid rgba(217, 214, 206, 0.92) !important;
  color: var(--accent) !important;
}

.info-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.info-icon svg rect,
.info-icon svg circle,
.info-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-card-icon {
  color: var(--accent) !important;
}

.instagram-card-icon {
  color: var(--highlight) !important;
}

/* Remove any old duplicate mini Instagram icon styling from the visible link */
.instagram-link {
  gap: 0 !important;
  border-bottom: 1px solid rgba(78,111,100,0.35) !important;
}

.instagram-mini-icon {
  display: none !important;
}

/* Make the blank placeholder less visually demanding */
.blank-social-card {
  min-height: 72px !important;
  opacity: 0.55;
}

/* Local preview: footer update date */
.last-updated {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  opacity: 0.82;
}


/* Project notebook expansion */
.page-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero {
  padding: 82px 0 44px;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 5.2rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.058em !important;
}

.page-hero .section-lede {
  max-width: 850px;
  font-size: 1.16rem;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.notebook-section {
  border-top: 1px solid var(--line);
}

.notebook-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
}

.card-label {
  margin: 0 0 14px;
  color: var(--accent) !important;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
}

.muted-card {
  background: rgba(235, 234, 229, 0.66);
}

.explainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.explainer-panel,
.infographic-panel {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 46px var(--shadow-soft);
}

.explainer-panel h2,
.infographic-panel h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.explainer-panel p,
.infographic-panel p {
  color: var(--muted);
}

.data-flow {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.flow-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.flow-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #F8F6F1;
  background: var(--accent);
  font-weight: 900;
}

.layer-map {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.layer-node {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(244, 241, 234, 0.74);
}

.layer-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  color: var(--accent);
  background: #FFFFFF;
  border: 1px solid var(--line);
  font-weight: 900;
}

.status-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.status-row {
  display: grid;
  grid-template-columns: minmax(155px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.status-tag {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.source-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.source-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.source-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .explainer-grid,
  .source-list,
  .status-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 54px;
  }
}


/* Data explainers: compact scientific-report visual language */
.report-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.report-heading h2 {
  margin: 0;
}

.report-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--line);
}

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

.checklist-fact {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px var(--shadow-soft);
}

.fact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fact-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.fact-code {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  color: var(--accent);
  background: rgba(235, 234, 229, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.checklist-fact h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.checklist-fact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .checklist-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .checklist-facts {
    grid-template-columns: 1fr;
  }

  .checklist-fact {
    min-height: 0;
  }
}


/* Visible LikelyBird marks in navigation and landing hero */
.header-brand-icon {
  display: block;
  width: 76px;
  height: 66px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header .brand {
  gap: 10px !important;
}

.hero-brand-mark {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 0 22px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 560px) {
  .header-brand-icon {
    width: 62px;
    height: 54px;
  }

  .hero-brand-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }
}
