@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../../assets/fonts/PlusJakartaSans[wght].ttf') format('truetype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../../assets/fonts/Inter[opsz,wght].ttf') format('truetype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.ecorise-registration-page {
  --er-green: #2e7d52;
  --er-green-deep: #205f3d;
  --er-green-dark: #103626;
  --er-mint: #a8d8b0;
  --er-mint-bright: #bff4ca;
  --er-mint-pale: #ddf3e5;
  --er-ink: #0a2b40;
  --er-ink-deep: #061f30;
  --er-ink-soft: #123e53;
  --er-paper: #f4f7f5;
  --er-paper-light: #fbfcfb;
  --er-line: rgba(10, 43, 64, 0.12);
  --er-line-soft: rgba(10, 43, 64, 0.07);
  --er-error: #b53a3a;
  background: var(--er-paper);
  color: var(--er-ink);
  overflow-x: clip;
}

.ecorise-registration-page * {
  box-sizing: border-box;
}

.ecorise-registration-page main {
  overflow: clip;
}

.er-hero h1,
.er-form-intro h2,
.er-section-heading h3,
.er-role-card > strong,
.er-success h2 {
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.er-hero-copy > p,
.er-section-heading > p,
.er-check-copy,
.er-role-card > small,
.er-upload-copy > p,
.er-submit-note p,
.er-success > p,
.er-trust-grid p {
  hyphens: none;
  text-wrap: pretty;
  word-break: normal;
}

.ecorise-registration-page #scroll-progress {
  background: linear-gradient(to right, rgba(46, 125, 82, 0.18), rgba(46, 125, 82, 0.05));
}

.ecorise-registration-page #scroll-progress::after {
  background: linear-gradient(90deg, var(--er-mint-bright), var(--er-green));
  box-shadow: 0 0 16px rgba(46, 125, 82, 0.34);
}

.er-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background: var(--er-ink-deep);
}

.er-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.er-hero-media,
.er-hero-overlay {
  position: absolute;
  inset: 0;
}

.er-hero-media {
  z-index: -3;
}

.er-hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.025);
}

.er-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 31, 48, 0.97) 0%, rgba(6, 31, 48, 0.88) 42%, rgba(9, 48, 43, 0.58) 72%, rgba(6, 31, 48, 0.74) 100%),
    linear-gradient(0deg, rgba(6, 31, 48, 0.96) 0%, transparent 42%);
}

.er-hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(191, 244, 202, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 244, 202, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 62%, black 100%);
}

.er-water-rings {
  pointer-events: none;
}

.er-water-rings span {
  position: absolute;
  border: 1px solid rgba(191, 244, 202, 0.22);
  border-radius: 50%;
}

.er-water-rings--hero {
  position: absolute;
  z-index: -1;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  right: -8vw;
  top: 48%;
  transform: translateY(-50%);
  opacity: 0.34;
}

.er-water-rings--hero span {
  inset: 50%;
  transform: translate(-50%, -50%);
}

.er-water-rings--hero span:nth-child(1) { width: 22%; height: 22%; }
.er-water-rings--hero span:nth-child(2) { width: 44%; height: 44%; opacity: 0.78; }
.er-water-rings--hero span:nth-child(3) { width: 68%; height: 68%; opacity: 0.54; }
.er-water-rings--hero span:nth-child(4) { width: 94%; height: 94%; opacity: 0.34; }

.er-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 140px;
  padding-bottom: 42px;
}

.er-back-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.er-back-link:hover {
  color: var(--er-mint-bright);
  gap: 14px;
}

.er-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-hero-copy {
  max-width: 760px;
  margin: auto 0 38px;
  padding-top: 34px;
}

.er-kicker-row {
  display: flex;
  align-items: center;
  width: min(590px, 100%);
  margin-bottom: 20px;
}

.er-kicker {
  flex: none;
  color: var(--er-mint-bright);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.er-kicker-line {
  height: 1px;
  flex: 1;
  margin: 0 18px;
  background: linear-gradient(90deg, rgba(191, 244, 202, 0.5), rgba(191, 244, 202, 0.04));
}

.er-hero h1 {
  max-width: 760px;
  display: grid;
  row-gap: 0.06em;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 80px);
  font-weight: var(--weight-black);
  line-height: 1;
  letter-spacing: -0.04em;
}

.er-hero h1 .er-title-line {
  display: block;
  color: var(--color-white);
}

.er-hero h1 .er-title-line--story {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.18em;
  row-gap: 0.04em;
}

.er-hero h1 .er-title-accent {
  color: var(--er-mint);
  font-style: normal;
}

.er-hero-copy > p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.er-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 72%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.er-hero-fact {
  position: relative;
  padding: 22px 28px 0 0;
}

.er-hero-fact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--er-mint);
}

.er-hero-fact span,
.er-hero-fact strong {
  display: block;
}

.er-hero-fact span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.er-hero-fact strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.er-scroll-cue {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.er-scroll-cue span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.er-scroll-cue i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--er-mint), transparent);
}

.er-registration {
  position: relative;
  z-index: 5;
  padding: 66px 0 122px;
  background:
    radial-gradient(circle at 8% 10%, rgba(168, 216, 176, 0.16), transparent 24%),
    var(--er-paper);
}

.er-registration::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(46, 125, 82, 0.42);
}

.er-registration-bridge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.er-registration-bridge i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(46, 125, 82, 0.34), rgba(46, 125, 82, 0.06));
}

.er-registration-bridge span:last-child {
  color: rgba(10, 43, 64, 0.48);
}

.er-registration-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.8fr);
  gap: 28px;
  align-items: start;
  margin-top: 0;
}

.er-registration-rail {
  position: sticky;
  top: 88px;
  min-height: 660px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(191, 244, 202, 0.12);
  border-radius: 22px;
  color: var(--color-white);
  background:
    linear-gradient(150deg, rgba(46, 125, 82, 0.24), transparent 45%),
    var(--er-ink);
  box-shadow: 0 30px 70px rgba(10, 43, 64, 0.16);
}

.er-registration-rail::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(191, 244, 202, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 244, 202, 0.2) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.er-rail-top,
.er-step-list,
.er-rail-statement,
.er-rail-note {
  position: relative;
  z-index: 2;
}

.er-rail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.er-rail-eyebrow,
.er-rail-count {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.er-rail-eyebrow { color: var(--er-mint-bright); }
.er-rail-count { color: rgba(255, 255, 255, 0.32); }

.er-step-list {
  display: grid;
  gap: 4px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.er-step-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 13px 10px 13px 0;
  border-radius: 9px;
  opacity: 0.42;
  transition: opacity 220ms ease, padding 220ms ease, background 220ms ease;
}

.er-step-list li.is-current,
.er-step-list li.is-complete {
  opacity: 1;
}

.er-step-list li.is-current {
  padding-left: 12px;
  background: rgba(191, 244, 202, 0.08);
}

.er-step-list li > span {
  color: var(--er-mint);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
}

.er-step-list strong,
.er-step-list small {
  display: block;
}

.er-step-list strong {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
}

.er-step-list small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.45;
}

.er-rail-statement {
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  margin: 12px 0 0;
  overflow: hidden;
}

.er-rail-statement p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.er-rail-statement em {
  color: var(--er-mint);
  font-style: normal;
}

.er-water-rings--rail {
  position: absolute;
  width: 220px;
  aspect-ratio: 1;
  right: -92px;
  top: -8px;
}

.er-water-rings--rail span {
  inset: 50%;
  transform: translate(-50%, -50%);
}

.er-water-rings--rail span:nth-child(1) { width: 36%; height: 36%; }
.er-water-rings--rail span:nth-child(2) { width: 66%; height: 66%; opacity: 0.58; }
.er-water-rings--rail span:nth-child(3) { width: 96%; height: 96%; opacity: 0.28; }

.er-rail-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.er-rail-note svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--er-mint);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-rail-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.65;
}

.er-form-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--er-line-soft);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.er-form-intro {
  position: relative;
  display: block;
  padding: 26px var(--space-6) 24px;
  border-bottom: 1px solid var(--er-line-soft);
}

.er-form-eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.er-form-intro h2,
.er-success h2 {
  margin: 0;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.er-form-intro p {
  margin: 10px 0 0;
  color: #71838b;
  font-size: 12px;
}

.er-form[hidden],
.er-form-locked[hidden] {
  display: none !important;
}

.er-form-locked {
  min-height: 390px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(44px, 7vw, 84px) clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(168, 216, 176, 0.32), transparent 34%),
    linear-gradient(145deg, #fbfdfb, #edf6f0);
}

.er-form-locked-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 125, 82, 0.22);
  border-radius: 50%;
  color: var(--er-green);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(46, 125, 82, 0.12);
}

.er-form-locked-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-form-locked-content {
  min-width: 0;
}

.er-form-locked h3 {
  max-width: 520px;
  margin: 0;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.er-form-locked p {
  max-width: 52ch;
  margin: 16px 0 0;
  color: #60757e;
  font-size: 14px;
  line-height: 1.75;
}

.er-opening-countdown {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.er-opening-countdown[hidden] {
  display: none !important;
}

.er-opening-countdown > span {
  min-width: 0;
  padding: 15px 12px 13px;
  border: 1px solid rgba(46, 125, 82, 0.14);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(46, 125, 82, 0.07);
}

.er-opening-countdown strong,
.er-opening-countdown small {
  display: block;
}

.er-opening-countdown strong {
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.04em;
}

.er-opening-countdown small {
  margin-top: 8px;
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.er-form-section {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  border-bottom: 1px solid var(--er-line-soft);
  scroll-margin-top: 92px;
}

.er-form-section:last-child {
  border-bottom: 0;
}

.er-section-number {
  padding: 43px 18px;
  color: rgba(46, 125, 82, 0.32);
  border-right: 1px solid var(--er-line-soft);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.er-section-body {
  min-width: 0;
  padding: 42px 48px 48px;
}

.er-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 30px;
}

.er-section-heading > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.er-section-heading h3 {
  margin: 0;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.er-section-heading > p {
  max-width: 620px;
  margin: 0;
  color: #71838b;
  font-size: 11px;
  line-height: 1.65;
}

.er-transport-note {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin: -6px 0 30px;
  padding: 18px 20px;
  border: 1px solid rgba(46, 125, 82, 0.2);
  border-radius: 12px;
  background: rgba(221, 243, 229, 0.42);
}

.er-transport-note > span {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--er-green);
  box-shadow: 0 0 0 5px rgba(46, 125, 82, 0.1);
}

.er-transport-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.er-transport-note p {
  margin: 0;
  color: #5f737c;
  font-size: 10px;
  line-height: 1.7;
}

.er-copy-sentences > span {
  display: block;
}

.er-copy-sentences > span + span {
  margin-top: 2px;
}

.er-check-card {
  position: relative;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 21px 22px;
  overflow: hidden;
  border: 1px solid var(--er-line);
  border-radius: 13px;
  cursor: pointer;
  background: var(--er-paper-light);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.er-check-card:hover {
  border-color: rgba(46, 125, 82, 0.34);
}

.er-check-card.is-invalid {
  border-color: var(--er-error);
  box-shadow: 0 0 0 3px rgba(181, 58, 58, 0.08);
}

.er-check-card:has(input:checked) {
  border-color: rgba(46, 125, 82, 0.38);
  background: rgba(221, 243, 229, 0.58);
  box-shadow: 0 10px 28px rgba(46, 125, 82, 0.08);
}

.er-check-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.er-custom-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(10, 43, 64, 0.27);
  border-radius: 6px;
  background: var(--color-white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.er-custom-check svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.er-check-card input:checked + .er-custom-check {
  border-color: var(--er-green);
  background: var(--er-green);
}

.er-check-card input:checked + .er-custom-check svg {
  opacity: 1;
  transform: scale(1);
}

.er-check-card input:focus-visible + .er-custom-check {
  outline: 3px solid rgba(46, 125, 82, 0.18);
  outline-offset: 3px;
}

.er-check-copy {
  min-width: 0;
}

.er-check-copy strong,
.er-check-copy small {
  display: block;
}

.er-check-copy strong {
  margin-bottom: 5px;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.er-check-copy small {
  color: #71838b;
  font-size: 10px;
  line-height: 1.6;
}

.er-check-copy a {
  color: var(--er-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.er-check-card--age {
  grid-template-columns: 25px minmax(0, 1fr);
  min-height: 92px;
  align-items: center;
  border-color: rgba(46, 125, 82, 0.2);
  border-left: 3px solid rgba(46, 125, 82, 0.62);
  border-radius: 5px 13px 13px 5px;
  background: var(--color-white);
}

.er-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.er-role-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--er-line);
  border-radius: 15px;
  cursor: pointer;
  background: var(--color-white);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.er-role-card:hover {
  border-color: rgba(46, 125, 82, 0.34);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 43, 64, 0.09);
}

.er-role-card:has(input:checked) {
  border-color: var(--er-green);
  background: linear-gradient(155deg, rgba(221, 243, 229, 0.72), var(--color-white) 78%);
  box-shadow: inset 0 0 0 1px var(--er-green), 0 16px 34px rgba(46, 125, 82, 0.12);
}

.er-role-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.er-role-card input:focus-visible ~ .er-role-card-top {
  outline: 3px solid rgba(46, 125, 82, 0.18);
  outline-offset: 5px;
  border-radius: 8px;
}

.er-role-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.er-role-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--er-green);
  background: var(--er-mint-pale);
}

.er-role-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-role-choice {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(10, 43, 64, 0.22);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: inset 0 0 0 4px var(--color-white);
  transition: background 180ms ease, border-color 180ms ease;
}

.er-role-card input:checked ~ .er-role-card-top .er-role-choice {
  border-color: var(--er-green);
  background: var(--er-green);
}

.er-role-card > strong {
  margin-bottom: 8px;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.er-role-card > small {
  max-width: 250px;
  color: #71838b;
  font-size: 10px;
  line-height: 1.6;
}

.er-role-index {
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(46, 125, 82, 0.08);
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.er-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

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

.er-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.er-field label span {
  color: var(--er-green);
}

.er-field label small {
  color: #93a2a8;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.er-field input,
.er-field select,
.er-field textarea {
  width: 100%;
  height: 56px;
  padding: 0 17px;
  border: 1px solid var(--er-line);
  border-radius: 11px;
  color: var(--er-ink);
  outline: none;
  background: var(--er-paper-light);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.er-field textarea {
  height: auto;
  min-height: 130px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
  line-height: 1.65;
}

.er-field input::placeholder {
  color: #a5b0b4;
}

.er-field select {
  appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='m5 7 4 4 4-4' stroke='%230a2b40' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 18px;
}

.er-field select:invalid {
  color: #8c9ba1;
}

.er-field select option {
  color: var(--er-ink);
}

.er-custom-select {
  position: relative;
}

.er-custom-select-trigger,
.er-custom-select-panel {
  display: none;
}

.er-custom-select.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.er-custom-select.is-enhanced .er-custom-select-trigger {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px 0 17px;
  border: 1px solid var(--er-line);
  border-radius: 11px;
  color: #8c9ba1;
  outline: none;
  cursor: pointer;
  background: var(--er-paper-light);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.er-custom-select.is-enhanced .er-custom-select-trigger:hover {
  border-color: rgba(46, 125, 82, 0.27);
}

.er-custom-select.is-enhanced .er-custom-select-trigger:focus-visible,
.er-custom-select.is-open .er-custom-select-trigger {
  border-color: var(--er-green);
  color: var(--er-ink);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(46, 125, 82, 0.1);
}

.er-custom-select-trigger.has-value {
  color: var(--er-ink) !important;
}

.er-custom-select-chevron {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 125, 82, 0.12);
  border-radius: 9px;
  color: var(--er-green);
  background: rgba(221, 243, 229, 0.58);
  transition: transform 180ms ease, background 180ms ease;
}

.er-custom-select-chevron svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-custom-select.is-open .er-custom-select-chevron {
  transform: rotate(180deg);
  background: var(--er-mint-pale);
}

.er-custom-select.is-open {
  z-index: 60;
}

.er-custom-select.is-enhanced .er-custom-select-panel:not([hidden]) {
  position: absolute;
  z-index: 70;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  display: block;
  padding: 15px;
  border: 1px solid rgba(10, 43, 64, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 56px rgba(10, 43, 64, 0.18), 0 4px 14px rgba(10, 43, 64, 0.08);
  backdrop-filter: blur(14px);
  animation: er-select-in 160ms ease-out both;
}

@keyframes er-select-in {
  from { opacity: 0; transform: translateY(-5px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.er-custom-select-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.er-custom-select-panel-head strong {
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.er-custom-select-panel-head span {
  color: #89999f;
  font-size: 9px;
}

.er-custom-select-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.er-custom-select-options button {
  min-width: 0;
  height: 43px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 1px solid rgba(10, 43, 64, 0.1);
  border-radius: 9px;
  color: var(--er-ink);
  outline: none;
  cursor: pointer;
  background: var(--er-paper-light);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.er-custom-select-options button:hover,
.er-custom-select-options button:focus-visible {
  border-color: rgba(46, 125, 82, 0.34);
  background: var(--er-mint-pale);
  transform: translateY(-1px);
}

.er-custom-select-options button[aria-selected="true"] {
  border-color: var(--er-green);
  color: var(--color-white);
  background: var(--er-green);
  box-shadow: 0 7px 18px rgba(46, 125, 82, 0.2);
}

.er-field input:hover,
.er-field select:hover,
.er-field textarea:hover {
  border-color: rgba(46, 125, 82, 0.27);
}

.er-field input:focus,
.er-field select:focus,
.er-field textarea:focus {
  border-color: var(--er-green);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(46, 125, 82, 0.1);
}

.er-field.is-invalid input,
.er-field.is-invalid select,
.er-field.is-invalid textarea {
  border-color: var(--er-error);
  box-shadow: 0 0 0 3px rgba(181, 58, 58, 0.08);
}

.er-application-info {
  padding: 90px 0 96px;
  color: var(--er-ink);
  background: linear-gradient(135deg, var(--er-paper-light), #eef7f1);
}

.er-info-heading {
  max-width: 790px;
}

.er-info-heading h2 {
  margin: 12px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.er-info-heading > p {
  max-width: 690px;
  margin: 0;
  color: #60757e;
  font-size: 15px;
  line-height: 1.75;
}

.er-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.er-info-grid article {
  min-height: 190px;
  padding: 25px;
  border: 1px solid rgba(10, 43, 64, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 34px rgba(10, 43, 64, 0.05);
}

.er-info-grid article > span {
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.er-info-grid strong {
  display: block;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 19px;
}

.er-info-grid p {
  margin: 9px 0 0;
  color: #71838b;
  font-size: 11px;
  line-height: 1.65;
}

.er-application-info--volunteer {
  padding-bottom: 80px;
}

.er-field--spaced {
  margin-top: 28px;
}

.er-field-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #7c8e95;
  font-size: 10px;
}

.er-field-meta > span {
  padding-top: 7px;
  white-space: nowrap;
}

.er-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.er-activity-grid label {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--er-line);
  border-radius: 11px;
  cursor: pointer;
  background: var(--er-paper-light);
  font-size: 11px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.er-activity-grid input {
  position: absolute;
  left: 17px;
  width: 17px;
  height: 17px;
  accent-color: var(--er-green);
}

.er-activity-grid label:has(input:checked) {
  border-color: rgba(46, 125, 82, 0.38);
  background: var(--er-mint-pale);
}

.er-document-grid {
  display: grid;
  gap: 8px;
}

.er-document-upload {
  position: relative;
  min-height: 116px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-content: center;
  gap: 5px 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px dashed rgba(46, 125, 82, 0.38);
  border-radius: 13px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(168, 216, 176, 0.13), rgba(255, 255, 255, 0.8));
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.er-document-upload:hover,
.er-document-upload:focus-within {
  border-color: var(--er-green);
  box-shadow: 0 10px 26px rgba(46, 125, 82, 0.09);
  transform: translateY(-1px);
}

.er-document-upload.is-invalid {
  border-color: var(--er-error);
}

.er-document-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.er-document-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--er-green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
}

.er-document-upload strong {
  align-self: end;
  overflow-wrap: anywhere;
  font-family: var(--font-heading);
  font-size: 13px;
}

.er-document-upload small {
  color: #71838b;
  font-size: 10px;
}

.er-check-card.is-invalid {
  border-color: var(--er-error);
  box-shadow: 0 0 0 3px rgba(181, 58, 58, 0.08);
}

.er-volunteer-page .er-title-accent {
  color: #b8e5d0;
}

.er-field.is-invalid .er-custom-select-trigger {
  border-color: var(--er-error);
  box-shadow: 0 0 0 3px rgba(181, 58, 58, 0.08);
}

.er-field-message {
  min-height: 0;
  margin: 7px 0 0;
  color: var(--er-error);
  font-size: 9px;
  line-height: 1.45;
}

.er-field-message:empty {
  display: none;
}

.er-upload {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 220px;
  padding: 25px;
  border: 1px dashed rgba(46, 125, 82, 0.38);
  border-radius: 17px;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(221, 243, 229, 0.55), rgba(251, 252, 251, 0.95));
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.er-upload:hover,
.er-upload.is-dragging {
  border-color: var(--er-green);
  background: rgba(221, 243, 229, 0.65);
}

.er-upload.is-dragging {
  transform: scale(1.006);
}

.er-upload.is-invalid {
  border-color: var(--er-error);
}

.er-upload input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.er-upload-preview {
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(46, 125, 82, 0.16);
  border-radius: 15px;
  color: var(--er-green);
  background-color: var(--color-white);
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 30px rgba(10, 43, 64, 0.08);
}

.er-upload-preview.has-image svg,
.er-upload-preview.has-image .er-upload-ripple {
  display: none;
}

.er-upload-preview svg {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-upload-ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(46, 125, 82, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(46, 125, 82, 0.05),
    0 0 0 44px rgba(46, 125, 82, 0.025);
}

.er-upload-copy {
  min-width: 0;
}

.er-upload-label {
  display: block;
  margin-bottom: 10px;
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.er-upload-copy > strong {
  display: block;
  max-width: 330px;
  margin-bottom: 9px;
  color: var(--er-ink);
  overflow-wrap: anywhere;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.er-upload-copy > p {
  margin: 0 0 18px;
  color: #7a8b92;
  font-size: 10px;
}

.er-upload-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(46, 125, 82, 0.25);
  border-radius: 8px;
  color: var(--er-green);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.er-upload-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-consent-section .er-section-heading {
  grid-template-columns: 1fr;
}

.er-rules-callout {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 20px 21px;
  border: 1px solid rgba(46, 125, 82, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(221, 243, 229, 0.68), rgba(255, 255, 255, 0.96));
}

.er-rules-callout-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--er-green);
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(10, 43, 64, 0.08);
}

.er-rules-callout-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-rules-callout-copy {
  min-width: 0;
}

.er-rules-callout-copy > span {
  display: block;
  margin-bottom: 5px;
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.er-rules-callout-copy strong {
  display: block;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.35;
}

.er-rules-callout-copy p {
  margin: 5px 0 0;
  color: #71838b;
  font-size: 9px;
  line-height: 1.55;
}

.er-rules-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(46, 125, 82, 0.3);
  border-radius: 8px;
  color: var(--er-green);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.er-rules-button:hover {
  border-color: var(--er-green);
  color: var(--color-white);
  background: var(--er-green);
  transform: translateY(-1px);
}

.er-rules-button:focus-visible {
  outline: 3px solid rgba(46, 125, 82, 0.18);
  outline-offset: 3px;
}

.er-rules-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.er-consent-stack > .er-field-message {
  margin-top: -5px;
}

.er-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.er-form-status {
  margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid rgba(181, 58, 58, 0.22);
  border-radius: 9px;
  color: #8f3232;
  background: rgba(181, 58, 58, 0.06);
  font-size: 11px;
  line-height: 1.55;
}

.er-form-status[hidden] {
  display: none;
}

.er-form-status.is-info {
  border-color: rgba(46, 125, 82, 0.2);
  color: var(--er-green-deep);
  background: rgba(221, 243, 229, 0.45);
}

.er-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--er-line-soft);
}

.er-submit-note {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: start;
  max-width: 270px;
}

.er-submit-note > span {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--er-green);
  box-shadow: 0 0 0 5px rgba(46, 125, 82, 0.1);
}

.er-submit-note p {
  margin: 0;
  color: #7a8b92;
  font-size: 9px;
  line-height: 1.55;
}

.er-submit-button {
  flex: none;
  min-width: 210px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px 0 24px;
  border: 0;
  border-radius: 10px;
  color: var(--color-white);
  cursor: pointer;
  background: var(--er-green);
  box-shadow: 0 14px 30px rgba(46, 125, 82, 0.22);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.er-submit-button:hover {
  background: var(--er-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(46, 125, 82, 0.28);
}

.er-submit-button:active {
  transform: translateY(0);
}

.er-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.er-submit-button.is-loading svg {
  animation: er-submit-pulse 900ms ease-in-out infinite alternate;
}

@keyframes er-submit-pulse {
  from { opacity: 0.35; transform: translateX(0); }
  to { opacity: 1; transform: translateX(3px); }
}

.er-submit-button:focus-visible {
  outline: 3px solid rgba(46, 125, 82, 0.2);
  outline-offset: 4px;
}

.er-submit-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.er-submit-button:hover svg {
  transform: translateX(3px);
}

.er-success {
  min-height: 760px;
  padding: 110px 64px;
  scroll-margin-top: 82px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(168, 216, 176, 0.27), transparent 33%),
    var(--color-white);
}

.er-success[hidden] {
  display: none;
}

.er-success-mark {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  margin: 0 auto 34px;
  border: 1px solid rgba(46, 125, 82, 0.22);
  border-radius: 50%;
  color: var(--er-green);
  background: var(--er-mint-pale);
  box-shadow: 0 0 0 16px rgba(221, 243, 229, 0.4), 0 0 0 34px rgba(221, 243, 229, 0.16);
}

.er-success-mark svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.er-success h2 {
  max-width: 620px;
  margin: 0 auto;
}

.er-success > p {
  max-width: 550px;
  margin: 22px auto 0;
  color: #667b84;
  font-size: 14px;
  line-height: 1.8;
}

.er-success-reset {
  margin-top: 34px;
  padding: 12px 18px;
  border: 1px solid rgba(46, 125, 82, 0.25);
  border-radius: 8px;
  color: var(--er-green);
  cursor: pointer;
  background: var(--color-white);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.er-trust-strip {
  position: relative;
  padding: 62px 0;
  overflow: hidden;
  color: var(--color-white);
  background: var(--er-ink);
}

.er-trust-strip::after {
  content: 'ECO RISE';
  position: absolute;
  right: -20px;
  bottom: -36px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-heading);
  font-size: 156px;
  font-weight: 800;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.er-trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.er-trust-grid > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.er-trust-grid > div:first-child { padding-left: 0; }
.er-trust-grid > div:last-child { padding-right: 0; border-right: 0; }

.er-trust-grid > div > span {
  color: var(--er-mint);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.er-trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  line-height: 1.65;
}

.er-trust-grid strong {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 650;
}

@media (max-width: 1050px) {
  .er-hero {
    min-height: 800px;
  }

  .er-hero-facts {
    width: 86%;
  }

  .er-registration-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
  }

  .er-registration-rail {
    padding: 30px 22px 26px;
  }

  .er-section-body {
    padding-right: 36px;
    padding-left: 36px;
  }

  .er-section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .er-hero {
    min-height: 700px;
  }

  .er-water-rings--hero {
    width: 72vw;
    right: -30vw;
  }

  .er-hero-facts {
    width: 100%;
  }

  .er-registration {
    padding-bottom: 96px;
  }

  .er-registration-layout {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .er-registration-rail {
    position: relative;
    top: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: center;
  }

  .er-step-list {
    grid-column: 1;
  }

  .er-rail-statement {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 210px;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .er-rail-note {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .er-trust-grid > div {
    padding: 0 22px;
  }
}

@media (max-width: 680px) {
  .er-hero {
    min-height: 680px;
  }

  .er-hero-inner {
    padding-top: 112px;
    padding-bottom: 32px;
  }

  .er-hero-copy {
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .er-kicker-row {
    margin-bottom: 22px;
  }

  .er-hero h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .er-hero-copy > p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.72;
  }

  .er-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .er-hero-fact {
    padding-top: 17px;
  }

  .er-hero-fact:last-child {
    grid-column: 1 / -1;
  }

  .er-scroll-cue {
    display: none;
  }

  .er-registration-layout { margin-top: 0; }

  .er-registration-rail {
    display: block;
    padding: 26px 22px;
  }

  .er-rail-top {
    padding-bottom: 18px;
  }

  .er-step-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .er-step-list li,
  .er-step-list li.is-current {
    display: block;
    min-width: 0;
    padding: 12px 8px;
  }

  .er-step-list li > span {
    display: block;
    margin-bottom: 8px;
  }

  .er-step-list small {
    display: none;
  }

  .er-step-list strong {
    font-size: 9px;
    line-height: 1.35;
  }

  .er-rail-statement {
    display: none;
  }

  .er-rail-note {
    margin-top: 18px;
  }

  .er-form-shell {
    border-radius: var(--radius-xl);
  }

  .er-form-intro {
    padding: 26px 24px 24px;
  }

  .er-form-intro h2,
  .er-success h2 {
    font-size: 35px;
  }

  .er-form-section {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .er-section-number {
    padding: 34px 10px;
    font-size: 12px;
  }

  .er-section-body {
    padding: 34px 22px 38px;
  }

  .er-section-heading {
    margin-bottom: 24px;
  }

  .er-section-heading h3 {
    font-size: 20px;
  }

  .er-role-grid,
  .er-fields-grid {
    grid-template-columns: 1fr;
  }

  .er-field--full {
    grid-column: auto;
  }

  .er-role-card {
    min-height: 188px;
  }

  .er-check-copy {
    position: relative;
    z-index: 2;
  }

  .er-upload {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .er-upload-preview {
    width: 100%;
    height: 220px;
  }

  .er-rules-callout {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .er-rules-callout-icon {
    width: 44px;
    height: 44px;
  }

  .er-rules-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .er-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .er-submit-note {
    max-width: none;
  }

  .er-submit-button {
    width: 100%;
  }

  .er-success {
    min-height: 650px;
    padding: 90px 30px;
  }

  .er-trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .er-trust-grid > div,
  .er-trust-grid > div:first-child,
  .er-trust-grid > div:last-child {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .er-trust-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .er-hero {
    min-height: 680px;
  }

  .er-hero-media video {
    object-position: 60% center;
  }

  .er-kicker-line {
    display: none;
  }

  .er-hero h1 {
    font-size: clamp(40px, 12vw, 50px);
  }

  .er-hero-fact strong {
    font-size: 11px;
  }

  .er-registration {
    padding-bottom: 72px;
  }

  .er-registration-layout {
    padding-right: 14px;
    padding-left: 14px;
  }

  .er-form-intro {
    padding: 24px 20px 22px;
  }

  .er-form-intro h2,
  .er-success h2 {
    font-size: 31px;
  }

  .er-form-section {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .er-section-body {
    padding-right: 17px;
    padding-left: 17px;
  }

  .er-section-heading h3 {
    font-size: 18px;
  }

  .er-role-card {
    padding: 20px;
  }

  .er-check-card {
    padding: 18px;
  }

  .er-rules-callout {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .er-rules-callout-icon {
    display: none;
  }

}

@media (max-width: 760px) {
  .er-application-info {
    padding: 64px 0;
  }

  .er-info-grid,
  .er-activity-grid {
    grid-template-columns: 1fr;
  }

  .er-info-grid article {
    min-height: 0;
  }

  .er-document-upload {
    grid-template-columns: 48px 1fr;
    padding: 17px;
  }

  .er-document-icon {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecorise-registration-page *,
  .ecorise-registration-page *::before,
  .ecorise-registration-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   ECORISE APPLICATIONS — visual pass v6
   Keeps the shared Spirit of Youth system, with EcoRise green
   as the page-level accent and calmer, deliberate text wrapping.
   ============================================================ */

.ecorise-registration-page {
  --color-accent: var(--er-green);
  --color-accent-dark: #3b9261;
  --color-accent-10: rgba(46, 125, 82, 0.1);
  --color-accent-08: rgba(46, 125, 82, 0.08);
  --color-accent-06: rgba(46, 125, 82, 0.06);
  --color-accent-20: rgba(46, 125, 82, 0.2);
  --color-accent-30: rgba(46, 125, 82, 0.3);
  --shadow-accent: 0 10px 28px rgba(46, 125, 82, 0.24);
}

.ecorise-registration-page .site-header--scrolled::after {
  background: linear-gradient(to right, transparent, rgba(168, 216, 176, 0.52) 25%, rgba(168, 216, 176, 0.52) 75%, transparent);
}

.ecorise-registration-page .nav-link--active::before {
  border-color: rgba(168, 216, 176, 0.24);
  background: rgba(46, 125, 82, 0.13);
}

.ecorise-registration-page .nav-link--cta,
.ecorise-registration-page .lang-switch__link.is-active {
  color: var(--color-white) !important;
  box-shadow: 0 8px 24px rgba(46, 125, 82, 0.3);
}

.ecorise-registration-page .nav-link--cta:hover {
  color: var(--color-white) !important;
  box-shadow: 0 12px 30px rgba(46, 125, 82, 0.38);
}

.ecorise-registration-page #back-to-top {
  border-color: rgba(168, 216, 176, 0.34);
  color: var(--er-mint-bright);
}

.ecorise-registration-page #back-to-top:hover {
  border-color: var(--er-mint);
  box-shadow: 0 0 18px rgba(46, 125, 82, 0.26);
}

.er-hero {
  min-height: clamp(720px, 86vh, 860px);
}

.er-hero h1 {
  max-width: 900px;
  font-size: clamp(46px, 5.15vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.er-hero h1 .er-title-line--story {
  display: block;
  white-space: nowrap;
}

.er-hero h1 .er-title-accent {
  color: var(--er-mint-bright);
}

.er-hero-copy {
  max-width: 900px;
  margin-bottom: 42px;
}

.er-hero-copy > p {
  max-width: 660px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
  text-wrap: pretty;
}

.er-kicker-row {
  width: min(690px, 100%);
}

.er-hero-facts {
  width: min(780px, 72%);
}

.er-hero-fact {
  transition: transform 280ms var(--ease-out), background 220ms ease;
}

.er-hero-fact::before {
  transition: width 280ms var(--ease-out), background 220ms ease;
}

.er-hero-fact:hover {
  transform: translateY(-4px);
}

.er-hero-fact:hover::before {
  width: 64px;
  background: var(--er-mint-bright);
}

.er-scroll-cue {
  right: max(24px, calc((100vw - var(--container-max)) / 2));
  bottom: 38px;
  min-height: 54px;
  flex-direction: row;
  gap: 14px;
  padding: 6px 7px 6px 18px;
  border: 1px solid rgba(191, 244, 202, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 31, 48, 0.58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  transition: transform 260ms var(--ease-out), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.er-scroll-cue span {
  writing-mode: horizontal-tb;
  transform: none;
}

.er-scroll-cue i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--er-green);
}

.er-scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: er-cue-arrow 1.5s ease-in-out infinite;
}

.er-scroll-cue:hover {
  color: var(--color-white);
  border-color: rgba(191, 244, 202, 0.54);
  background: rgba(6, 31, 48, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

@keyframes er-cue-arrow {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

.er-water-rings--hero {
  animation: er-rings-breathe 7s ease-in-out infinite alternate;
}

@keyframes er-rings-breathe {
  from { opacity: 0.25; transform: translateY(-50%) scale(0.97); }
  to { opacity: 0.44; transform: translateY(-50%) scale(1.035); }
}

.er-back-link,
.er-kicker-row,
.er-hero h1,
.er-hero-copy > p,
.er-hero-facts,
.er-scroll-cue {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 800ms var(--ease-out), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.ecorise-registration-page.page-entered .er-back-link,
.ecorise-registration-page.page-entered .er-kicker-row,
.ecorise-registration-page.page-entered .er-hero h1,
.ecorise-registration-page.page-entered .er-hero-copy > p,
.ecorise-registration-page.page-entered .er-hero-facts,
.ecorise-registration-page.page-entered .er-scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

.ecorise-registration-page.page-entered .er-kicker-row { transition-delay: 80ms; }
.ecorise-registration-page.page-entered .er-hero h1 { transition-delay: 150ms; }
.ecorise-registration-page.page-entered .er-hero-copy > p { transition-delay: 240ms; }
.ecorise-registration-page.page-entered .er-hero-facts { transition-delay: 320ms; }
.ecorise-registration-page.page-entered .er-scroll-cue { transition-delay: 400ms; }

/* Scroll-driven dates */
.er-timeline {
  --timeline-progress: 0;
  min-height: 215vh;
  padding: 0;
  scroll-margin-top: 60px;
  background:
    radial-gradient(circle at 88% 22%, rgba(168, 216, 176, 0.22), transparent 28%),
    linear-gradient(145deg, #fbfcfb 0%, #edf6f0 100%);
}

.er-timeline-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 112px 0 70px;
  overflow: hidden;
}

.er-timeline-sticky::before {
  content: '04';
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(46, 125, 82, 0.045);
  font-family: var(--font-heading);
  font-size: min(30vw, 410px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.er-info-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.er-info-heading h2 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  text-wrap: balance;
}

.er-info-heading > p {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.78;
  text-wrap: pretty;
}

.er-timeline-shell {
  position: relative;
  z-index: 2;
  margin-top: 62px;
}

.er-timeline-track {
  position: absolute;
  top: 28px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  overflow: hidden;
  background: rgba(10, 43, 64, 0.12);
}

.er-timeline-track > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--er-green), var(--er-mint));
  transform: scaleX(var(--timeline-progress));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.er-timeline .er-info-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.er-timeline-step {
  min-width: 0;
  padding: 0 22px;
  opacity: 0.32;
  transform: translateY(8px);
  transition: opacity 360ms ease, transform 420ms var(--ease-out);
}

.er-timeline-step:first-child { padding-left: 0; }
.er-timeline-step:last-child { padding-right: 0; }

.er-timeline-step:hover,
.er-timeline-step.is-complete {
  opacity: 0.7;
}

.er-timeline-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.er-timeline-node {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(10, 43, 64, 0.16);
  border-radius: 50%;
  color: rgba(10, 43, 64, 0.48);
  background: #f7faf8;
  box-shadow: 0 0 0 10px rgba(247, 250, 248, 0.96);
  transition: color 320ms ease, border-color 320ms ease, background 320ms ease, box-shadow 320ms ease, transform 420ms var(--ease-out);
}

.er-timeline-node i {
  font-family: var(--font-heading);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.er-timeline-step.is-complete .er-timeline-node,
.er-timeline-step.is-active .er-timeline-node {
  border-color: var(--er-green);
  color: var(--color-white);
  background: var(--er-green);
  box-shadow: 0 0 0 10px rgba(221, 243, 229, 0.9), 0 12px 28px rgba(46, 125, 82, 0.22);
}

.er-timeline-step.is-active .er-timeline-node {
  transform: scale(1.08);
}

.er-timeline-step time,
.er-timeline-step strong,
.er-timeline-step p {
  display: block;
  max-width: 31ch;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-wrap: pretty;
}

.er-timeline-step time {
  color: var(--er-green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.er-timeline-step strong {
  margin-top: 15px;
  color: var(--er-ink);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.er-timeline-step p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #60757e;
  font-size: 12px;
  line-height: 1.65;
}

.er-timeline-hint {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 42px 0 0;
  color: rgba(10, 43, 64, 0.46);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.er-timeline-hint > span {
  width: 26px;
  height: 1px;
  background: var(--er-green);
}

/* Form surface and interactions */
.er-registration {
  background:
    radial-gradient(circle at 6% 8%, rgba(168, 216, 176, 0.18), transparent 25%),
    linear-gradient(180deg, #f5f8f6, #eef4f1);
}

.er-registration-rail {
  border-color: rgba(168, 216, 176, 0.2);
  box-shadow: 0 34px 78px rgba(10, 43, 64, 0.18);
}

.er-step-list li.is-current {
  box-shadow: inset 2px 0 0 var(--er-mint);
}

.er-form-shell {
  border-color: rgba(46, 125, 82, 0.12);
  box-shadow: 0 24px 64px rgba(10, 43, 64, 0.1);
}

.er-form-shell::before {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--er-green), var(--er-mint), transparent 82%);
}

.er-form-section {
  transition: background 280ms ease;
}

.er-form-section:hover {
  background: linear-gradient(90deg, rgba(221, 243, 229, 0.16), transparent 42%);
}

.er-section-number {
  transition: color 240ms ease, background 240ms ease;
}

.er-form-section:hover .er-section-number {
  color: var(--er-green);
  background: rgba(221, 243, 229, 0.2);
}

.er-field label {
  justify-content: flex-start;
  text-wrap: pretty;
  transition: color 180ms ease;
}

.er-field:focus-within label {
  color: var(--er-green);
}

.er-check-card {
  transition: border-color 220ms ease, background 220ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.er-check-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 43, 64, 0.07);
}

.er-check-copy strong {
  max-width: 62ch;
  font-size: 13px;
  line-height: 1.52;
  text-wrap: pretty;
}

.er-upload:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(46, 125, 82, 0.1);
}

.er-upload-button {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 220ms var(--ease-out);
}

.er-upload:hover .er-upload-button {
  border-color: var(--er-green);
  color: var(--color-white);
  background: var(--er-green);
  transform: translateY(-1px);
}

.er-rules-callout {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 20px;
  min-height: 126px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-color: rgba(168, 216, 176, 0.22);
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 20%, rgba(168, 216, 176, 0.18), transparent 28%),
    var(--er-ink);
  box-shadow: 0 18px 42px rgba(10, 43, 64, 0.13);
  text-decoration: none;
  transition: transform 300ms var(--ease-out), border-color 220ms ease, box-shadow 280ms ease;
}

.er-rules-callout:hover {
  border-color: rgba(191, 244, 202, 0.48);
  box-shadow: 0 24px 52px rgba(10, 43, 64, 0.2);
  transform: translateY(-3px);
}

.er-rules-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 244, 202, 0.2);
  border-radius: 50%;
  color: var(--er-mint-bright);
  background: rgba(191, 244, 202, 0.06);
  font-family: var(--font-heading);
  font-size: 19px;
  transition: color 220ms ease, background 220ms ease, transform 320ms var(--ease-out);
}

.er-rules-callout:hover .er-rules-index {
  color: var(--er-ink);
  background: var(--er-mint-bright);
  transform: rotate(8deg) scale(1.04);
}

.er-rules-callout-copy > span {
  color: var(--er-mint-bright);
}

.er-rules-callout-copy strong {
  max-width: 36ch;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.35;
  text-wrap: pretty;
}

.er-rules-callout-copy p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.er-rules-button {
  min-height: 44px;
  color: var(--er-ink);
  border-color: var(--er-mint-bright);
  background: var(--er-mint-bright);
}

.er-rules-callout:hover .er-rules-button {
  color: var(--er-ink);
  border-color: var(--color-white);
  background: var(--color-white);
}

.er-application-info--volunteer {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  padding: 104px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 50%, rgba(168, 216, 176, 0.26), transparent 30%),
    linear-gradient(125deg, #fbfcfb 0%, #edf6f0 100%);
}

.er-application-info--volunteer::after {
  content: '01';
  position: absolute;
  right: 4vw;
  bottom: -0.22em;
  color: rgba(46, 125, 82, 0.055);
  font-family: var(--font-heading);
  font-size: min(31vw, 400px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
}

.er-application-info--volunteer .er-info-heading {
  max-width: 780px;
}

.er-trust-grid > div {
  transition: transform 260ms var(--ease-out);
}

.er-trust-grid > div:hover {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .er-hero-facts {
    width: calc(100% - 205px);
  }

  .er-timeline-step {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 760px) {
  .er-form-locked {
    min-height: 470px;
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: center;
    padding: 42px 28px 48px;
  }

  .er-form-locked-icon {
    width: 62px;
    height: 62px;
  }

  .er-opening-countdown {
    gap: 7px;
    margin-top: 24px;
  }

  .er-opening-countdown > span {
    padding: 13px 5px 11px;
    border-radius: 11px;
  }

  .er-opening-countdown strong {
    font-size: clamp(20px, 7vw, 27px);
  }

  .er-opening-countdown small {
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 0.07em;
  }

  .er-hero {
    min-height: 790px;
  }

  .er-hero-inner {
    padding-bottom: 106px;
  }

  .er-hero h1 {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1;
  }

  .er-hero h1 .er-title-line--story {
    white-space: normal;
  }

  .er-hero-copy > p {
    max-width: 43ch;
    font-size: 14px;
    line-height: 1.7;
  }

  .er-hero-facts {
    width: 100%;
  }

  .er-scroll-cue {
    right: auto;
    bottom: 28px;
    left: 50%;
    display: flex;
    transform: translateX(-50%) translateY(18px);
    white-space: nowrap;
  }

  .ecorise-registration-page.page-entered .er-scroll-cue {
    transform: translateX(-50%) translateY(0);
  }

  .er-scroll-cue:hover {
    transform: translateX(-50%) translateY(-3px);
  }

  .er-timeline {
    min-height: auto;
  }

  .er-timeline-sticky {
    position: relative;
    min-height: auto;
    display: block;
    padding: 72px 0 78px;
  }

  .er-timeline-sticky::before {
    font-size: 260px;
  }

  .er-info-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .er-info-heading > p {
    font-size: 14px;
    line-height: 1.72;
  }

  .er-timeline-shell {
    margin-top: 42px;
  }

  .er-timeline-track {
    display: none;
  }

  .er-timeline .er-info-grid {
    width: calc(100vw - 24px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 82vw);
    gap: 14px;
    margin-right: calc(50% - 50vw);
    padding: 0 max(18px, calc((100vw - var(--container-max)) / 2));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .er-timeline .er-info-grid::-webkit-scrollbar {
    display: none;
  }

  .er-timeline-step,
  .er-timeline-step:first-child,
  .er-timeline-step:last-child {
    min-height: 260px;
    padding: 26px;
    border: 1px solid rgba(46, 125, 82, 0.14);
    border-radius: 18px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 38px rgba(10, 43, 64, 0.07);
    scroll-snap-align: start;
    transform: none;
  }

  .er-timeline-node {
    width: 48px;
    height: 48px;
    margin: 0 0 30px;
    box-shadow: 0 0 0 8px rgba(221, 243, 229, 0.82);
  }

  .er-timeline-step time,
  .er-timeline-step strong,
  .er-timeline-step p {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .er-timeline-step strong {
    font-size: 23px;
  }

  .er-timeline-hint {
    justify-content: flex-start;
    margin-top: 24px;
    font-size: 0;
  }

  .er-timeline-hint::after {
    content: 'Prevuci kartice da vidiš sve rokove';
    font-size: 9px;
  }

  .er-application-info--volunteer {
    min-height: 430px;
    padding: 76px 0;
  }

  .er-form-section:hover {
    background: transparent;
  }

  .er-rules-callout {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 20px;
  }

  .er-rules-index {
    width: 44px;
    height: 44px;
  }

  .er-rules-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .er-hero {
    min-height: 800px;
  }

  .er-hero h1 {
    font-size: clamp(37px, 11vw, 45px);
  }

  .er-hero-copy > p {
    font-size: 13px;
  }

  .er-rules-callout {
    grid-template-columns: 1fr;
  }

  .er-rules-index {
    display: none;
  }

  .er-check-card {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
  }

  .er-check-copy strong {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .er-water-rings--hero,
  .er-scroll-cue svg {
    animation: none !important;
  }
}

.ecorise-registration-page.page-entered .er-scroll-cue:hover {
  transform: translateY(-3px);
}

@media (max-width: 760px) {
  .ecorise-registration-page.page-entered .er-scroll-cue:hover {
    transform: translateX(-50%) translateY(-3px);
  }
}
