.landing-page {
  background:
    radial-gradient(circle at top left, rgba(24, 101, 77, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(14, 70, 55, 0.16), transparent 34%),
    #d2e4da;
  color: #19324f;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("../deco/download.jpg") center center/240px auto repeat;
  border-bottom: 1px solid rgba(19, 40, 70, 0.1);
}

.landing-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.5));
  pointer-events: none;
}

.landing-header .container-fluid {
  position: relative;
  z-index: 1;
}

.landing-logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 14px 24px rgba(19, 40, 70, 0.1);
}

.landing-header .brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
}

.landing-header .brand-name,
.landing-header .brand-tag {
  font-weight: 900;
  letter-spacing: -0.015em;
  color: #132846;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-header .brand-name {
  font-variation-settings: "wght" 900;
}

.landing-header .brand-tag {
  font-variation-settings: "wght" 860;
  color: #1f3d61;
}

.landing-nav-btn {
  border-radius: 999px;
  padding-inline: 1.2rem;
}

.landing-showcase-strip {
  padding: 1.05rem 0 0;
}

.showcase-carousel {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: clamp(8.5rem, 18vw, 14.5rem);
  max-height: 14.5rem;
  min-height: clamp(8.5rem, 18vw, 14.5rem);
  aspect-ratio: 16 / 3;
  border: 1px solid rgba(19, 40, 70, 0.12);
  border-radius: 26px;
  background: #bfd8cb;
  box-shadow: 0 20px 42px rgba(19, 40, 70, 0.1);
  isolation: isolate;
}

.showcase-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(19, 40, 70, 0.58), rgba(19, 40, 70, 0.14) 48%, rgba(16, 83, 63, 0.4)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.showcase-slides,
.showcase-slide {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  margin: 0;
  opacity: 0;
  animation: showcaseFade 28s infinite;
}

.showcase-slide:nth-child(1) {
  animation-delay: 0s;
}

.showcase-slide:nth-child(2) {
  animation-delay: 4s;
}

.showcase-slide:nth-child(3) {
  animation-delay: 8s;
}

.showcase-slide:nth-child(4) {
  animation-delay: 12s;
}

.showcase-slide:nth-child(5) {
  animation-delay: 16s;
}

.showcase-slide:nth-child(6) {
  animation-delay: 20s;
}

.showcase-slide:nth-child(7) {
  animation-delay: 24s;
}

.showcase-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: showcaseDrift 28s infinite ease-in-out;
}

.showcase-overlay {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(0.9rem, 2.4vw, 1.7rem);
  z-index: 3;
  max-width: min(34rem, calc(100% - 2rem));
  color: #fff;
}

.showcase-overlay span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-overlay strong {
  display: block;
  max-width: 31rem;
  font-size: clamp(1.05rem, 2.6vw, 1.75rem);
  line-height: 1.16;
  text-shadow: 0 12px 26px rgba(19, 40, 70, 0.28);
}

.showcase-dots {
  position: absolute;
  right: clamp(1rem, 2.4vw, 1.6rem);
  bottom: clamp(0.9rem, 2vw, 1.35rem);
  z-index: 3;
  display: flex;
  gap: 0.35rem;
}

.showcase-dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  animation: showcaseDot 28s infinite;
}

@keyframes showcaseFade {
  0%,
  10% {
    opacity: 1;
  }

  16%,
  100% {
    opacity: 0;
  }
}

@keyframes showcaseDrift {
  0%,
  100% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.09) translate3d(-1.2%, 0, 0);
  }
}

@keyframes showcaseDot {
  0%,
  10% {
    width: 1.35rem;
    background: #fff;
  }

  16%,
  100% {
    width: 0.5rem;
    background: rgba(255, 255, 255, 0.52);
  }
}

.landing-hero {
  padding: 1.35rem 0 2rem;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e5e4f;
  background: rgba(228, 244, 238, 0.96);
  border: 1px solid rgba(115, 183, 157, 0.5);
}

.hero-copy-panel,
.hero-visual-card,
.insight-card,
.crowdfund-panel,
.process-card,
.cta-card,
.role-card,
.listing-card,
.campaign-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(19, 40, 70, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(120deg, rgba(42, 138, 115, 0.08), rgba(19, 40, 70, 0.05) 55%, rgba(199, 170, 109, 0.1));
  box-shadow: 0 24px 48px rgba(19, 40, 70, 0.08);
}

.hero-copy-panel {
  padding: 2.2rem;
}

.hero-copy-panel::before,
.hero-visual-card::before,
.process-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64)),
    url("../deco/download (1).jpg") center center/260px auto repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero-copy-panel > *,
.hero-visual-card > *,
.process-card > *,
.cta-card > * {
  position: relative;
  z-index: 1;
}

.hero-copy-panel h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #132846;
}

.hero-lead {
  max-width: 40rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #5c7285;
}

.hero-cta {
  margin: 1.8rem 0 2rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stat-tile {
  padding: 0.95rem 1.1rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 40, 70, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 8.2rem;
}

.hero-stat-topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.hero-stat-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(42, 138, 115, 0.12), rgba(42, 138, 115, 0.2));
  color: #1f6555;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-stat-icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

.hero-stat-icon-project {
  background: linear-gradient(180deg, rgba(41, 95, 134, 0.12), rgba(41, 95, 134, 0.2));
  color: #295f86;
}

.hero-stat-icon-agent {
  background: linear-gradient(180deg, rgba(200, 166, 106, 0.14), rgba(200, 166, 106, 0.22));
  color: #946f35;
}

.hero-stat-icon-artisan {
  background: linear-gradient(180deg, rgba(108, 138, 69, 0.14), rgba(108, 138, 69, 0.24));
  color: #567633;
}

.hero-stat-tile strong {
  display: inline-block;
  font-size: 1.55rem;
  color: #132846;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  margin-top: 0;
  color: #51687b;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-stat-note {
  display: block;
  margin-top: 0.38rem;
  color: #8aa0af;
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero-visual-card {
  min-height: 100%;
  padding: 1.4rem;
}

.hero-visual-stack {
  position: relative;
  min-height: 34rem;
}

.hero-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 36px rgba(19, 40, 70, 0.14);
}

.hero-photo.primary {
  inset: 0 4rem 7rem 0;
}

.hero-photo.secondary {
  width: 48%;
  height: 38%;
  right: 0;
  bottom: 3rem;
}

.hero-badge-tile {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  width: min(18rem, 78%);
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(19, 40, 70, 0.88);
  color: #f6fbff;
  box-shadow: 0 18px 32px rgba(19, 40, 70, 0.2);
}

.hero-badge-tile .eyebrow {
  display: block;
  color: #99cbbd;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge-tile strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 1.2rem;
}

.hero-badge-tile p {
  margin: 0;
  color: rgba(246, 251, 255, 0.8);
}

.landing-section {
  padding: 1.2rem 0 2.2rem;
}

.alt-section {
  position: relative;
}

.alt-section::before {
  content: "";
  position: absolute;
  inset: 4rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(231, 243, 238, 0.9), rgba(243, 248, 246, 0.68)),
    url("../deco/download (2).jpg") center center/310px auto repeat;
  opacity: 0.14;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #132846;
}

.section-heading p {
  margin: 0;
  color: #688091;
  line-height: 1.75;
}

.listing-card,
.campaign-card,
.role-card {
  height: 100%;
}

.listing-image,
.campaign-visual {
  height: 15rem;
  background-size: cover;
  background-position: center;
}

.listing-body,
.campaign-body,
.insight-card,
.crowdfund-panel,
.process-card,
.cta-card,
.role-card {
  padding: 1.4rem;
}

.listing-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1e5e4f;
  background: rgba(225, 242, 235, 0.95);
}

.listing-badge.subtle {
  color: #42627a;
  background: rgba(231, 239, 245, 0.95);
}

.listing-card h3,
.campaign-card h3,
.role-card h3,
.insight-stat-item h3,
.process-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.24rem;
  color: #132846;
}

.listing-meta {
  margin: 0 0 0.9rem;
  color: #6d8394;
}

.listing-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #132846;
}

.listing-foot {
  margin-top: 1rem;
  color: #5f7588;
  font-weight: 600;
}

.insight-stat-list,
.process-grid,
.campaign-grid {
  display: grid;
  gap: 1rem;
}

.insight-stat-item,
.process-grid article {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(19, 40, 70, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.insight-stat-item strong,
.campaign-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.45rem;
  color: #132846;
}

.insight-stat-item p,
.campaign-grid span,
.role-card p,
.process-grid p {
  margin: 0;
  color: #688091;
  line-height: 1.65;
}

.campaign-progress .progress {
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(19, 40, 70, 0.08);
}

.campaign-progress .progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, #2a8a73, #2b5f87);
}

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

.role-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.role-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 138, 115, 0.12);
  color: #2a8a73;
  font-size: 1.35rem;
}

.role-process {
  padding-left: 1.1rem;
  margin: 0;
  color: #486175;
}

.role-process li + li {
  margin-top: 0.55rem;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.process-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(42, 138, 115, 0.14);
  color: #2a8a73;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-card h2 {
  margin: 1rem 0 0.8rem;
  font-size: 2rem;
  color: #132846;
}

.cta-card p {
  margin-bottom: 1.5rem;
  color: #688091;
  line-height: 1.75;
}

@media (max-width: 1199.98px) {
  .hero-visual-stack {
    min-height: 28rem;
  }

  .hero-photo.primary {
    inset: 0 3rem 6rem 0;
  }
}

@media (max-width: 991.98px) {
  .hero-visual-stack {
    min-height: 24rem;
  }

  .hero-photo.primary,
  .hero-photo.secondary,
  .hero-badge-tile {
    position: relative;
    inset: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: 14rem;
  }

  .hero-photo.secondary {
    margin-top: 1rem;
  }

  .hero-badge-tile {
    height: auto;
    margin-top: 1rem;
  }

  .process-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .landing-header .navbar {
    gap: 1rem;
  }

  .landing-nav-btn {
    padding-inline: 0.95rem;
  }

  .landing-showcase-strip {
    padding-top: 0.65rem;
  }

  .showcase-carousel {
    height: 7.75rem;
    max-height: 7.75rem;
    min-height: 7.75rem;
    aspect-ratio: auto;
    border-radius: 18px;
  }

  .showcase-overlay {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.8rem;
    max-width: none;
  }

  .showcase-overlay span {
    padding: 0.25rem 0.55rem;
    font-size: 0.62rem;
  }

  .showcase-overlay strong {
    max-width: 13rem;
    font-size: 0.95rem;
  }

  .showcase-dots {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.25rem;
  }

  .showcase-dots span {
    width: 0.38rem;
    height: 0.38rem;
  }

  .hero-copy-panel,
  .hero-visual-card,
  .insight-card,
  .crowdfund-panel,
  .process-card,
  .cta-card,
  .role-card,
  .listing-body,
  .campaign-body {
    padding: 1.1rem;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
}
