:root {
  --ink: #10291e;
  --cream: #f6f4e8;
  --grass: #b6e442;
  --sky: #65bdf2;
  --line: rgba(16, 41, 30, 0.18);
  --progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 4vw, 64px);
  color: #fff;
  transition: color 220ms ease, background-color 220ms ease, transform 300ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 0;
  left: clamp(22px, 4vw, 64px);
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(246, 244, 232, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font: 700 17px/1 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 23px;
  display: inline-block;
}

.brand-wool,
.brand-wool::before,
.brand-wool::after {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: currentColor;
}

.brand-wool {
  left: 4px;
  top: 5px;
  width: 25px;
  height: 16px;
}

.brand-wool::before,
.brand-wool::after {
  content: "";
  width: 13px;
  height: 13px;
  top: -4px;
}

.brand-wool::before { left: 2px; }
.brand-wool::after { right: 1px; }

.brand-face {
  position: absolute;
  right: 1px;
  top: 8px;
  width: 12px;
  height: 11px;
  border-radius: 55% 55% 50% 50%;
  background: currentColor;
  transform: rotate(-8deg);
}

.brand-face::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 3px;
  height: 2px;
  border-radius: 50%;
  background: var(--sky);
}

.scrolled .brand-face::after { background: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 13px;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta) {
  opacity: 0.9;
  transition: opacity 180ms ease;
}

.nav-links > a:hover { opacity: 0.6; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 12px 18px;
  color: var(--ink);
  border-radius: 999px;
  background: #fff;
}

.scrolled .nav-cta {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  height: 210vh;
  min-height: 1250px;
  background: var(--sky);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--sky);
}

.scene,
.sky-plane,
.sun-haze,
.depth-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene {
  z-index: -1;
  overflow: hidden;
}

.sky-plane {
  z-index: 0;
  background:
    linear-gradient(180deg, #4ca9e5 0%, #62b9e9 45%, #82cdf1 100%);
  transform: scale(calc(1 + var(--progress) * .1));
  will-change: transform;
}

.sky-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.sun-haze {
  z-index: 1;
  background: radial-gradient(circle at 52% 13%, rgba(255,255,255,.38), transparent 32%);
  transform: translate3d(0, calc(var(--progress) * -5vh), 0) scale(calc(1 + var(--progress) * .18));
  opacity: calc(1 - var(--progress) * .15);
  will-change: transform;
}

.scene-asset {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity, filter;
}

.sheep-cutout {
  z-index: 3;
  height: auto;
  --float-start: -6px;
  --float-end: 7px;
  --float-duration: 5.8s;
  --float-delay: 0s;
  --sheep-progress: clamp(0, calc((var(--progress) - var(--exit-start)) * var(--exit-speed)), 1);
  animation: sheep-float var(--float-duration) ease-in-out var(--float-delay) infinite;
  transform:
    translate3d(calc(var(--sheep-progress) * var(--travel-x)), calc(var(--sheep-progress) * var(--travel-y)), 0)
    rotate(calc(var(--sheep-progress) * var(--turn)))
    scale(calc(1 + var(--sheep-progress) * var(--grow)));
  filter: blur(calc(var(--sheep-progress) * var(--soften, 0px)));
}

.sheep-near-left {
  --float-start: -5px;
  --float-end: 8px;
  --float-duration: 6.2s;
  --float-delay: -1.4s;
  --exit-start: .02;
  --exit-speed: 1.35;
  --travel-x: -58vw;
  --travel-y: -9vh;
  --turn: -7deg;
  --grow: .35;
  top: -2%;
  left: -10%;
  width: clamp(285px, 30vw, 570px);
}

.sheep-near-right {
  --float-start: -7px;
  --float-end: 6px;
  --float-duration: 5.4s;
  --float-delay: -3.1s;
  --exit-start: .1;
  --exit-speed: 1.42;
  --travel-x: 58vw;
  --travel-y: -10vh;
  --turn: 7deg;
  --grow: .38;
  top: -4%;
  right: -11%;
  width: clamp(290px, 31vw, 590px);
  transform:
    translate3d(calc(var(--sheep-progress) * var(--travel-x)), calc(var(--sheep-progress) * var(--travel-y)), 0)
    rotate(calc(var(--sheep-progress) * var(--turn)))
    scaleX(-1) scale(calc(1 + var(--sheep-progress) * var(--grow)));
}

.sheep-mid-left {
  --float-start: -5px;
  --float-end: 7px;
  --float-duration: 4.9s;
  --float-delay: -2.3s;
  --exit-start: .2;
  --exit-speed: 1.6;
  --travel-x: -43vw;
  --travel-y: 4vh;
  --turn: -5deg;
  --grow: .1;
  top: 31%;
  left: 18%;
  width: clamp(135px, 14.5vw, 270px);
}

.sheep-mid-right {
  --float-start: -6px;
  --float-end: 8px;
  --float-duration: 5.7s;
  --float-delay: -.8s;
  --exit-start: .3;
  --exit-speed: 1.75;
  --travel-x: 42vw;
  --travel-y: 2vh;
  --turn: 5deg;
  --grow: .12;
  top: 27%;
  right: 16%;
  width: clamp(135px, 14.5vw, 270px);
  transform:
    translate3d(calc(var(--sheep-progress) * var(--travel-x)), calc(var(--sheep-progress) * var(--travel-y)), 0)
    rotate(calc(var(--sheep-progress) * var(--turn)))
    scaleX(-1) scale(calc(1 + var(--sheep-progress) * var(--grow)));
}

.sheep-far-left {
  --float-start: -3px;
  --float-end: 5px;
  --float-duration: 4.6s;
  --float-delay: -1.7s;
  --exit-start: .43;
  --exit-speed: 2.15;
  --travel-x: -30vw;
  --travel-y: -13vh;
  --turn: 3deg;
  --grow: -.08;
  --soften: .8px;
  top: 8%;
  left: 26%;
  width: clamp(76px, 7.5vw, 140px);
}

.sheep-far-right {
  --float-start: -4px;
  --float-end: 4px;
  --float-duration: 5.2s;
  --float-delay: -3.8s;
  --exit-start: .52;
  --exit-speed: 2.35;
  --travel-x: 29vw;
  --travel-y: -12vh;
  --turn: -3deg;
  --grow: -.1;
  --soften: .9px;
  top: 12%;
  right: 25%;
  width: clamp(76px, 7.5vw, 140px);
  transform:
    translate3d(calc(var(--sheep-progress) * var(--travel-x)), calc(var(--sheep-progress) * var(--travel-y)), 0)
    rotate(calc(var(--sheep-progress) * var(--turn)))
    scaleX(-1) scale(calc(1 + var(--sheep-progress) * var(--grow)));
}

@keyframes sheep-float {
  0%, 100% { translate: 0 var(--float-start); }
  50% { translate: 0 var(--float-end); }
}

.hill-cutout {
  z-index: 4;
  bottom: -3%;
  width: 66vw;
  height: auto;
  transform:
    translate3d(calc(var(--progress) * var(--travel-x)), calc(var(--progress) * 14vh), 0)
    scale(calc(1 + var(--progress) * .16));
  transform-origin: 50% 100%;
}

.hill-left {
  --travel-x: -45vw;
  left: -6%;
  z-index: 5;
}

.hill-right {
  --travel-x: 45vw;
  right: -6%;
  z-index: 4;
}

.depth-shade {
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 46, 87, .03), transparent 48%, rgba(19, 54, 11, .13));
  opacity: calc(1 - var(--progress) * .65);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(850px, calc(100% - 40px));
  text-align: center;
  color: #fff;
  transform: translate(-50%, calc(-47% - var(--progress) * 24px)) scale(calc(1 - var(--progress) * .04));
  opacity: clamp(0, calc(1 - var(--progress) * 2.1), 1);
  will-change: opacity, transform;
}

.hero h1 {
  margin: 0;
  font: 800 clamp(54px, 7.4vw, 114px)/0.88 "Manrope", sans-serif;
  letter-spacing: -0.075em;
  text-shadow: 0 4px 28px rgba(16, 41, 30, 0.14);
}

.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-lede {
  width: min(520px, 90%);
  margin: 28px auto 30px;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(16, 41, 30, 0.22);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 54px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(16, 41, 30, .2);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 64px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: calc(0.8 - var(--progress));
}

.scroll-cue i {
  position: relative;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 99px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  border-radius: 5px;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { transform: translate(-50%, 0); opacity: 0; }
  25% { opacity: 1; }
  75%, 100% { transform: translate(-50%, 14px); opacity: 0; }
}

.hero-reveal {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: clamp(120px, 15vh, 160px) clamp(24px, 6vw, 96px) clamp(90px, 12vh, 140px);
  color: var(--ink);
  background: var(--cream);
  opacity: clamp(0, calc((var(--progress) - .38) * 2.4), 1);
  clip-path: inset(
    calc((1 - var(--progress)) * 38%)
    calc((1 - var(--progress)) * 23%)
    calc((1 - var(--progress)) * 15%)
    round calc((1 - var(--progress)) * 64px)
  );
  transform: translate3d(0, calc((1 - var(--progress)) * 18vh), 0) scale(calc(.7 + var(--progress) * .3));
  transform-origin: 50% 65%;
  will-change: opacity, clip-path, transform;
}

.next-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  padding-top: clamp(8px, 2vw, 28px);
}

.next-grid h2 {
  margin: 0;
  font: 700 clamp(46px, 5.2vw, 78px)/.94 "Manrope", sans-serif;
  letter-spacing: -.075em;
}

.reveal-money-sheep {
  justify-self: end;
  width: min(100%, 500px);
  max-height: 58vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(16, 41, 30, .13));
  animation: reveal-sheep-float 5.6s ease-in-out -1.9s infinite;
}

@keyframes reveal-sheep-float {
  0%, 100% { translate: 0 -5px; rotate: -1deg; }
  50% { translate: 0 8px; rotate: 1deg; }
}

.trust-strip {
  position: relative;
  z-index: 8;
  padding: 30px clamp(24px, 6vw, 96px) 36px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #edf0e4;
}

.trust-label {
  margin: 0 0 24px;
  color: rgba(16, 41, 30, .48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.trust-marks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 3vw, 52px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.trust-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  color: rgba(16, 41, 30, .62);
}

.trust-mark svg {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-mark span {
  font: 700 clamp(12px, 1.15vw, 16px)/1.05 "Manrope", sans-serif;
  letter-spacing: -.025em;
}

.section-kicker,
.site-footer h3,
.footer-bottom {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.how-section,
.campaigns-section {
  padding: clamp(85px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.how-section { background: var(--cream); }
.campaigns-section { background: #eaf5fa; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto clamp(55px, 7vw, 95px);
}

.section-kicker {
  margin: 0 0 16px;
  color: #4f9f30;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font: 700 clamp(46px, 6.2vw, 92px)/.96 "Manrope", sans-serif;
  letter-spacing: -.07em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: rgba(16,41,30,.65);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
}

.section-heading > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.steps-grid,
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: 1400px;
  margin: 0 auto;
}

.steps-grid article {
  min-height: 330px;
  padding: clamp(27px, 3vw, 43px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.55);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.steps-grid article:hover,
.campaign-grid article:hover { transform: translateY(-5px); }

.steps-grid article > span {
  font: 700 12px/1 "Manrope", sans-serif;
  color: #6da836;
}

.steps-grid h3 {
  margin: 100px 0 14px;
  font: 700 clamp(22px, 2.2vw, 31px)/1.1 "Manrope", sans-serif;
  letter-spacing: -.05em;
}

.steps-grid p {
  margin: 0;
  color: rgba(16,41,30,.67);
  font-size: 15px;
  line-height: 1.6;
}

.steps-grid .featured-step {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 24px 55px -35px rgba(16,41,30,.75);
}

.steps-grid .featured-step > span { color: var(--grass); }
.steps-grid .featured-step p { color: rgba(255,255,255,.7); }

.campaign-grid article {
  overflow: hidden;
  border: 1px solid rgba(16,41,30,.12);
  border-radius: 28px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.campaign-grid article:hover { box-shadow: 0 26px 60px -40px rgba(16,41,30,.6); }

.campaign-visual {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background-color: var(--sky);
}

.campaign-visual::before,
.campaign-visual::after {
  content: "";
  position: absolute;
  border-radius: 50% 50% 0 0;
}

.campaign-visual::before {
  width: 120%;
  height: 62%;
  left: -30%;
  bottom: -16%;
  background: #76bd3b;
  transform: rotate(7deg);
}

.campaign-visual::after {
  width: 90%;
  height: 54%;
  right: -34%;
  bottom: -18%;
  background: #4b8f32;
  transform: rotate(-8deg);
}

.visual-ocean { background: linear-gradient(145deg, #85d8f4, #348cc2); }
.visual-ocean::before { background: #dff5ec; }
.visual-ocean::after { background: #7cc8cf; }
.visual-research { background: linear-gradient(145deg, #b9c8f2, #5c70ba); }
.visual-research::before { background: #d8dcf4; }
.visual-research::after { background: #929bd5; }

.campaign-visual > span,
.campaign-visual > strong {
  position: absolute;
  z-index: 2;
  top: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}

.campaign-visual > span {
  left: 20px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.campaign-visual > strong {
  right: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  font: 700 16px/1 "Manrope", sans-serif;
}

.campaign-body { padding: 25px; }
.campaign-body h3 { margin: 0; font: 700 22px/1.1 "Manrope", sans-serif; letter-spacing: -.04em; }
.campaign-body p { min-height: 68px; margin: 13px 0 24px; color: rgba(16,41,30,.65); font-size: 14px; line-height: 1.55; }
.progress { height: 6px; overflow: hidden; border-radius: 99px; background: #e9eee7; }
.progress i { display: block; height: 100%; border-radius: inherit; background: #77bb3d; }
.campaign-body small { display: flex; justify-content: space-between; margin-top: 10px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.campaign-body small b { color: #57932d; }
.campaign-body small span { color: rgba(16,41,30,.5); }

.final-cta {
  padding: clamp(65px, 8vw, 120px) clamp(24px, 6vw, 96px);
  background: var(--cream);
}

.final-cta > div {
  position: relative;
  max-width: 1400px;
  min-height: 550px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(55px, 7vw, 100px);
  color: #fff;
  border-radius: 42px;
  background: linear-gradient(135deg, #153e2e 0%, #4f9834 100%);
}

.final-cta .section-kicker { color: var(--grass); }
.final-cta h2 { max-width: 900px; }
.final-cta p:not(.section-kicker) { max-width: 540px; margin: 25px 0 34px; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.55; }
.cta-button { position: relative; z-index: 2; width: fit-content; color: var(--ink); background: #fff; }

.final-cta img {
  position: absolute;
  right: clamp(10px, 6vw, 90px);
  bottom: -7%;
  width: clamp(190px, 25vw, 360px);
  filter: drop-shadow(0 25px 35px rgba(7,28,19,.3));
}

.site-footer {
  padding: clamp(70px, 9vw, 125px) clamp(24px, 6vw, 96px) 38px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 45px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand p { max-width: 390px; color: rgba(16,41,30,.62); font-size: 14px; line-height: 1.65; }
.site-footer h3 { margin: 4px 0 24px; }
.footer-grid > div:not(.footer-brand) a { display: block; width: fit-content; margin: 0 0 13px; color: rgba(16,41,30,.62); font-size: 14px; }
.footer-grid a:hover { color: #5d9a32; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 75px auto 0;
  padding-top: 28px;
  color: rgba(16,41,30,.5);
  border-top: 1px solid var(--line);
}

.footer-bottom span:last-child { display: flex; gap: 28px; }

.apply-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
}

.apply-nav { color: var(--ink); }

.apply-main {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(560px, 1.2fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px clamp(24px, 6vw, 96px) 100px;
}

.apply-intro { position: sticky; top: 145px; min-width: 0; }

.apply-kicker {
  margin: 0 0 16px;
  color: #4f9f30;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.apply-intro h1 {
  max-width: 11ch;
  margin: 0;
  font: 800 clamp(54px, 6vw, 92px)/.92 "Manrope", sans-serif;
  letter-spacing: -.075em;
}

.apply-intro > p:not(.apply-kicker) {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(16,41,30,.68);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

.apply-principles { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.apply-principles span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: rgba(16,41,30,.7); background: rgba(255,255,255,.5); font-size: 12px; font-weight: 600; }
.apply-sheep { display: block; width: min(78%, 420px); margin: 26px auto 0; filter: drop-shadow(0 22px 28px rgba(16,41,30,.12)); animation: reveal-sheep-float 5.8s ease-in-out -2.4s infinite; }
.application-panel { min-width: 0; padding: clamp(28px, 4vw, 58px); border: 1px solid var(--line); border-radius: 36px; background: rgba(255,255,255,.72); box-shadow: 0 32px 90px rgba(16,41,30,.08); }
.form-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 36px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading p { margin-bottom: 0; }
.form-heading > p:last-child { color: rgba(16,41,30,.5); font-size: 12px; }
.application-form,
.application-form fieldset { display: grid; gap: 22px; }
.application-form fieldset { margin: 18px 0 0; padding: 38px 0 0; border: 0; border-top: 1px solid var(--line); }
.application-form legend { padding: 0 0 22px; font: 700 22px/1.1 "Manrope", sans-serif; letter-spacing: -.04em; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.application-form label { display: grid; gap: 9px; color: rgba(16,41,30,.8); font-size: 13px; font-weight: 700; }
.application-form label b { color: #4f9f30; }
.application-form input,
.application-form select,
.application-form textarea { width: 100%; border: 1px solid rgba(16,41,30,.2); border-radius: 14px; outline: 0; color: var(--ink); background: rgba(255,255,255,.86); font: 500 15px/1.4 "DM Sans", sans-serif; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.application-form input,
.application-form select { height: 51px; padding: 0 15px; }
.application-form textarea { min-height: 122px; padding: 14px 15px; resize: vertical; }
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus { border-color: #62a743; background: #fff; box-shadow: 0 0 0 4px rgba(98,167,67,.12); }
.application-form input::placeholder,
.application-form textarea::placeholder { color: rgba(16,41,30,.35); }
.full-field { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-message { margin: 4px 0 0; padding: 14px 16px; border-radius: 14px; font-size: 14px; }
.form-message.error { color: #7b291f; background: #fce9e5; }
.form-submit { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 18px; padding-top: 30px; border-top: 1px solid var(--line); }
.form-submit p { max-width: 350px; margin: 0; color: rgba(16,41,30,.5); font-size: 12px; line-height: 1.5; }
.form-submit button,
.application-success button { flex: 0 0 auto; min-height: 54px; padding: 0 23px; border: 0; border-radius: 999px; color: #fff; background: var(--ink); font: 700 13px/1 "DM Sans", sans-serif; cursor: pointer; }
.form-submit button:disabled { cursor: wait; opacity: .58; }
.application-success { display: grid; place-items: start; min-height: 520px; align-content: center; }
.application-success > span { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 30px; border-radius: 50%; color: #fff; background: #5da53e; font-size: 27px; }
.application-success h2 { max-width: 12ch; margin: 0; font: 800 clamp(45px, 5vw, 72px)/.94 "Manrope", sans-serif; letter-spacing: -.07em; }
.application-success > p:not(.apply-kicker) { max-width: 440px; margin: 25px 0 36px; color: rgba(16,41,30,.65); font-size: 17px; line-height: 1.6; }

@media (max-width: 1050px) {
  .apply-main { grid-template-columns: 1fr; max-width: 850px; }
  .apply-intro { position: relative; top: auto; }
  .apply-intro h1 { max-width: 12ch; }
  .apply-sheep { width: min(55%, 330px); }
}

@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  .site-header::after { left: 20px; right: 20px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 14px; gap: 10px; }
  .hero { min-height: 1000px; }
  .hero-copy { top: 47%; }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); line-height: .92; }
  .hero-lede { margin-top: 23px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .scroll-cue span { display: none; }
  .sheep-near-left,
  .sheep-near-right { display: none; }
  .sheep-mid-left { left: -10%; top: 31%; width: 178px; }
  .sheep-mid-right { right: -10%; top: 28%; width: 178px; }
  .sheep-far-left { left: 12%; top: 8%; width: 88px; }
  .sheep-far-right { right: 10%; top: 13%; width: 84px; }
  .hill-cutout { width: 112vw; bottom: -1%; }
  .hill-left { left: -37%; }
  .hill-right { right: -37%; }
  .hero-reveal { padding-top: 110px; padding-bottom: 115px; }
  .next-grid { grid-template-columns: 1fr; gap: 14px; padding-top: 0; }
  .next-grid h2 { font-size: clamp(40px, 11.5vw, 56px); }
  .reveal-money-sheep { justify-self: center; width: min(48vw, 210px); max-height: 24vh; }
  .trust-strip { padding: 28px 22px 34px; }
  .trust-marks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
  .trust-mark { justify-content: flex-start; }
  .trust-mark:last-child { grid-column: 1 / -1; justify-content: center; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .section-heading h2 { font-size: clamp(44px, 13vw, 64px); }
  .steps-grid,
  .campaign-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 285px; }
  .steps-grid h3 { margin-top: 65px; }
  .campaign-visual { min-height: 220px; }
  .final-cta > div { min-height: 610px; padding: 45px 28px; border-radius: 30px; }
  .final-cta h2 { font-size: clamp(44px, 13vw, 64px); }
  .final-cta img { right: -30px; width: 230px; opacity: .9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 22px; line-height: 1.5; }
  .apply-main { padding: 125px 20px 60px; }
  .apply-intro h1 { font-size: clamp(48px, 14vw, 66px); }
  .apply-intro > p:not(.apply-kicker) { margin-top: 24px; }
  .apply-sheep { width: min(70%, 280px); }
  .application-panel { padding: 28px 20px; border-radius: 26px; }
  .form-heading,
  .form-submit { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .form-submit button { width: 100%; }
}

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