:root {
  --navy: #0b121b;
  --navy-soft: #141f2e;
  --green: #5e9f31;
  --green-dark: #43761d;
  --orange: #dd7c28;
  --orange-dark: #b85f14;
  --gold: #c9a227;
  --text: #17202a;
  --muted: #64707d;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --border: #e3e8ee;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 18px 45px rgba(11, 18, 27, 0.08);
  --shadow-sm: 0 8px 24px rgba(11, 18, 27, 0.05);
  font-family: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
  animation: driftBlob 28s ease-in-out infinite;
}

body::before {
  width: 340px;
  height: 340px;
  top: -70px;
  left: -70px;
  background: rgba(244, 97, 25, 0.35);
}

body::after {
  width: 420px;
  height: 420px;
  right: -110px;
  top: 20vh;
  background: rgba(111, 176, 42, 0.28);
  animation-delay: -7s;
}

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

a {
  color: var(--green-dark);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px))
    max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

/* Header */
.site-header {
  background: rgba(11, 18, 27, 0.96);
  backdrop-filter: blur(14px);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 0.5rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227, #f4e4a6);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  box-shadow: 0 0 0 3px rgba(244, 97, 25, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
  color: #c9a227;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.icon-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  touch-action: manipulation;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.icon-btn.accent {
  background: var(--orange);
}

/* Hero */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, #141f2e 55%, #0b121b);
  color: var(--white);
  padding: 3.25rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% 35% auto -20%;
  height: 85%;
  background: radial-gradient(circle, rgba(111, 176, 42, 0.18), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 42ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #6fa83b 0%, #89ba53 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(94, 159, 49, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(94, 159, 49, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.disclaimer {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  opacity: 0.65;
  max-width: 52ch;
}

/* Section */
.section {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-head--glow::before {
  content: "";
  position: absolute;
  inset: -16px 18% auto;
  height: 120px;
  background: radial-gradient(circle, rgba(244, 97, 25, 0.16), transparent 68%);
  pointer-events: none;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.18;
}

.section-lede {
  margin: 0.75rem auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Activity table */
.activity-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.activity-banner {
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

table.activity {
  width: 100%;
  min-width: 31rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.activity th,
.activity td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #e8eaed;
}

.activity th {
  background: #f3f5f7;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.activity tbody tr:nth-child(even) {
  background: #fafbfc;
}

.activity .amt {
  font-weight: 700;
  white-space: nowrap;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonials-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding: 2.5rem 1.25rem 3rem;
}

.testimonials-inner::before {
  content: "";
  position: absolute;
  inset: 20% -10% 10% 55%;
  background-image: radial-gradient(circle, #cfd4da 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}

.testimonial-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 5px solid var(--orange);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.testimonial-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  text-align: left;
  margin: 0 auto 0.25rem;
  max-width: 560px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 1;
}

.testimonial-body {
  text-align: left;
  max-width: 560px;
  margin: 0 auto 1.25rem;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}

.testimonial-name {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-role {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.testimonial-loc {
  margin: 0.35rem 0 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.t-controls {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}

.t-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border: none;
  padding: 0;
  background: #3d4550;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0.65;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
  touch-action: manipulation;
}

.t-dot[aria-current="true"] {
  background: var(--orange);
  opacity: 1;
  transform: scale(1.15);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 3.5rem 0;
  color: var(--white);
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--orange) 0%, #ff7a33 40%, #c73d08 100%);
  opacity: 0.95;
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='rgba(255,255,255,0.08)' d='M0 50 L40 20 L100 40 L100 100 L0 100 Z'/%3E%3C/svg%3E")
    no-repeat right bottom;
  background-size: 60% auto;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  max-width: 20ch;
  line-height: 1.2;
}

.cta-band .btn-primary {
  background: var(--green);
  color: var(--navy);
  font-size: 1rem;
  padding: 1rem 1.75rem;
}

/* Evidence gallery */
.gallery-section {
  padding-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.gallery-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #e4e7eb;
  aspect-ratio: 1;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  box-shadow: 0 6px 20px rgba(11, 18, 27, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.gallery-card.video-thumb {
  aspect-ratio: 16/10;
  grid-column: span 2;
}

@media (max-width: 639px) {
  .gallery-card.video-thumb {
    grid-column: span 1;
    aspect-ratio: 16/10;
  }
}

.gallery-card .video-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-block {
  grid-column: 1 / -1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.video-block--spaced {
  margin-top: 2rem;
}

.video-block h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .video-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-wrap video {
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.video-wrap figcaption {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 27, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
  max-width: 65ch;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: var(--navy);
  padding: 0.5rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---- Mobile & small screens ---- */
@media (max-width: 540px) {
  .section {
    padding: 2.25rem 0;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .section-title {
    letter-spacing: 0.04em;
    line-height: 1.25;
    font-size: clamp(1.05rem, 5.2vw, 1.85rem);
  }

  .section-kicker {
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }

  .hero {
    padding: 2.25rem 0 2.75rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.5rem, 6.5vw, 2.75rem);
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .disclaimer {
    font-size: 0.72rem;
    max-width: none;
  }

  .activity-banner {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.65rem 0.75rem;
    line-height: 1.35;
  }

  table.activity {
    font-size: 0.75rem;
    min-width: 28rem;
  }

  .activity th,
  .activity td {
    padding: 0.55rem 0.5rem;
  }

  .activity th {
    font-size: 0.65rem;
  }

  .testimonials-inner {
    padding: 1.75rem 0.75rem 2.25rem;
  }

  .testimonial-quote-mark {
    font-size: clamp(2.75rem, 14vw, 4rem);
    margin-bottom: 0.15rem;
  }

  .testimonial-body {
    font-size: 0.95rem;
  }

  .testimonial-body p {
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .testimonial-avatar {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }

  .t-controls {
    flex-wrap: wrap;
    row-gap: 0.5rem;
    max-width: 100%;
    padding-inline: 0.5rem;
  }

  .cta-band {
    padding: 2.5rem 0;
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  }

  .cta-band .container {
    align-items: stretch;
  }

  .cta-band h2 {
    max-width: none;
    font-size: clamp(1.2rem, 5.5vw, 1.9rem);
  }

  .cta-band .btn-primary {
    width: 100%;
    box-sizing: border-box;
  }

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

  .section-lede {
    font-size: 0.88rem;
    max-width: none;
    padding-inline: 0;
  }

  .video-block {
    padding: 0.85rem;
    margin-inline: 0;
  }

  .site-footer {
    padding: 1.5rem 0;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }

  .site-footer p {
    font-size: 0.8rem;
    max-width: none;
  }

  .lightbox-close {
    top: max(0.75rem, env(safe-area-inset-top, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .lightbox {
    padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px))
      max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
  }

  .gallery-card {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .container {
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px))
      max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
}

@media (min-width: 541px) and (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* ---- Landing (aligned with rest of site: light surface + navy header) ---- */
.landing {
  background: var(--bg);
  color: var(--text);
  padding: 1.75rem 0 3.5rem;
  position: relative;
}

.landing .landing-inner::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 159, 49, 0.85), rgba(221, 124, 40, 0.65));
  opacity: 0.9;
}

.landing-inner {
  max-width: none;
}

.landing-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid var(--border);
  transform: translateZ(0);
  isolation: isolate;
}

.landing-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  max-height: min(56vh, 460px);
  min-height: 200px;
  overflow: hidden;
  background: var(--navy);
}

.landing-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  overflow: hidden;
}

.landing-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Global img rule uses height:auto — override so cover fills frame */
.landing-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.15s;
  touch-action: manipulation;
}

.carousel-btn:hover {
  background: var(--white);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.community-slides-wrap {
  position: relative;
  padding-inline: 2.75rem;
}

@media (max-width: 540px) {
  .community-slides-wrap {
    padding-inline: 2.25rem;
  }
}

.community-slides-wrap .carousel-btn {
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(11, 18, 27, 0.12);
}

.carousel-btn--prev {
  left: 10px;
}

.carousel-btn--next {
  right: 10px;
}

.landing-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #f0f2f5;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.landing-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #b8c0ca;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.landing-carousel .carousel-dot[aria-current="true"] {
  background: var(--orange);
  transform: scale(1.2);
}

.community-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0 0;
  margin-top: 0.5rem;
}

.community-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #b8c0ca;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.community-carousel .carousel-dot[aria-current="true"] {
  background: var(--orange);
  transform: scale(1.2);
}

.landing-copy {
  margin-top: 2.25rem;
  text-align: left;
  max-width: 68ch;
  margin-inline: auto;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(250, 252, 255, 0.985));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.landing-copy::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(111, 176, 42, 0.12), transparent 65%);
  pointer-events: none;
}

.landing-copy h1 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.9rem;
  color: var(--navy);
  text-transform: none;
}

.landing-copy p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.7;
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: rgba(94, 159, 49, 0.08);
  color: var(--green-dark);
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-copy p:last-child {
  margin-bottom: 0;
}

.landing-celebrate {
  font-weight: 700;
  font-size: 1.02rem !important;
  color: var(--navy-soft);
}

.landing-signature {
  margin-top: 1.25rem !important;
  font-size: 1.05rem !important;
  color: var(--green-dark);
  font-weight: 600;
}

.landing-cta-wrap {
  margin-top: 1.75rem;
  text-align: center;
}

.btn-proceed {
  width: 100%;
  max-width: 360px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 1rem 1.4rem;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.trust-point {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(246, 248, 251, 0.95);
}

.trust-point strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.trust-point span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Proof section */
.proof-section {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(94, 159, 49, 0.06), transparent 24%),
    radial-gradient(circle at right 12% top 22%, rgba(221, 124, 40, 0.07), transparent 25%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.proof-block {
  margin-bottom: 2.5rem;
  position: relative;
}

.proof-block-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.video-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 52ch;
}

.proof-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1rem;
}

.gallery-grid,
.video-block,
.community-slider-section,
.winners-track-wrap,
.modal-panel {
  backdrop-filter: blur(10px);
}

.gallery-card,
.winner-card,
.video-wrap,
.community-slider-section {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-card:hover,
.winner-card:hover,
.video-wrap:hover,
.community-slider-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 18, 27, 0.08);
}

/* Community testimonial carousel (10 slides) */
.community-slider-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 251, 254, 0.97));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 0 calc(-1 * max(1rem, env(safe-area-inset-left, 0px)));
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  overflow: hidden;
  position: relative;
}

.community-slider-section::before,
.community-slider-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.community-slider-section::before {
  width: 180px;
  height: 180px;
  background: rgba(244, 97, 25, 0.12);
  top: -40px;
  left: -40px;
}

.community-slider-section::after {
  width: 170px;
  height: 170px;
  background: rgba(111, 176, 42, 0.14);
  right: -40px;
  bottom: -50px;
}

@media (min-width: 1160px) {
  .community-slider-section {
    margin-inline: 0;
    border-radius: var(--radius);
  }
}

.community-carousel {
  max-width: 640px;
  margin: 0 auto;
}

.community-slides {
  position: relative;
  min-height: 500px;
}

.community-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  text-align: center;
  padding: 0 0.5rem 1rem;
}

.community-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.community-slide img {
  width: min(100%, 280px);
  height: 180px;
  max-width: none;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: floatCard 8s ease-in-out infinite;
}

.community-slide .quote-mark {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--green);
  font-family: Georgia, serif;
  margin: -0.2rem 0 0.1rem;
}

.community-slide blockquote {
  margin: 0 auto 1rem;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.community-slide .meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0.25rem 0;
}

.community-slide .loc {
  font-weight: 800;
  color: var(--green-dark);
  margin-top: 0.5rem;
}

/* Winners strip */
.winners-section {
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.7) 0%, rgba(241, 247, 239, 0.9) 100%);
}

.winners-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overscroll-behavior-x: contain;
}

.winners-track {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem 1.25rem;
  min-height: 0;
}

.winner-card {
  flex: 0 0 min(100%, 340px);
  scroll-snap-align: start;
  padding: 1.35rem 1.15rem;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 640px) {
  .winner-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px) {
  .winner-card {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}

.winner-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.winner-card .amt {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.winner-card .pay {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winners-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-winners-nav {
  color: var(--navy);
  border: 2px solid #c5cbd3;
  background: var(--white);
}

.btn-winners-nav:hover {
  border-color: var(--orange);
  color: var(--navy);
}

/* Modal & form */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 27, 0.72);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99));
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: min(92vh, 900px);
  overflow-y: auto;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.modal-panel--toast {
  max-width: 420px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #eef1f4;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.modal-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.modal-lede {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.application-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-field span {
  letter-spacing: 0.02em;
}

.form-field--full {
  grid-column: 1 / -1;
}

.application-form input,
.application-form select {
  padding: 0.65rem 0.75rem;
  border: 1px solid #c5cbd3;
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.96);
}

.application-form input:focus,
.application-form select:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.form-error {
  color: #b3261e;
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
}

.form-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.proof-cta-copy {
  margin-bottom: 1rem;
}

.btn-submit {
  width: 100%;
  margin-top: 1.25rem;
}

.modal--toast .modal-panel {
  padding: 2rem 1.5rem;
}

.modal--toast h2 {
  font-size: 1.25rem;
}

.modal--toast p {
  margin: 0 0 1.25rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 540px) {
  .application-form .form-grid {
    grid-template-columns: 1fr;
  }

  .landing {
    padding: 1.25rem 0 2.75rem;
  }

  .landing-slides {
    max-height: 42vh;
    min-height: 180px;
  }

  .landing-copy {
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .community-slides {
    min-height: 520px;
  }

  .header-badge {
    display: none;
  }

  .community-slide img {
    width: min(100%, 230px);
    height: 156px;
    border-radius: 22px;
  }
}

@keyframes driftBlob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, 22px, 0) scale(1.08);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* Video unmute hint */
.video-unmute-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(11, 18, 27, 0.85);
  color: var(--white);
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.video-wrap {
  position: relative;
}

.video-wrap.video-needs-unmute .video-unmute-hint {
  display: inline-flex;
}
