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

:root {
  --paper: #f3efe6;
  --paper-deep: #e7e0d2;
  --ink: #171513;
  --ink-soft: #3c3832;
  --muted: #6d675c;
  --faint: #8a8376;
  --card: #fffdf8;
  --line: rgba(23, 21, 19, 0.08);
  --line-strong: rgba(23, 21, 19, 0.14);
  --forest: #1d4a38;
  --forest-deep: #123128;
  --leaf: #2a6b4d;
  --copper: #c4622d;
  --telegram: #229ed9;
  --telegram-d: #1a86ba;
  --r: 22px;
  --r-sm: 14px;
  --r-lg: 32px;
  --safe: env(safe-area-inset-bottom, 0px);
  --dock-h: 76px;
  --maxw: 560px;
  --shadow: 0 18px 40px rgba(23, 21, 19, 0.07);
}

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(var(--dock-h) + var(--safe));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-wash {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 8% -10%, rgba(42, 107, 77, 0.14), transparent 58%),
    radial-gradient(700px 420px at 110% 8%, rgba(196, 98, 45, 0.1), transparent 55%),
    linear-gradient(180deg, #f7f3ea 0%, var(--paper) 32%, #efe8da 100%);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(243, 239, 230, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}
.nav__mark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--forest);
  box-shadow: 4px 4px 0 rgba(196, 98, 45, 0.85);
}
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  background: rgba(29, 74, 56, 0.08);
  border: 1px solid rgba(29, 74, 56, 0.12);
  padding: 7px 12px;
  border-radius: 100px;
}
.nav__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 107, 77, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(42, 107, 77, 0); }
}

.hero { padding: 44px 0 20px; }
.hero__grid { display: grid; gap: 22px; }
.eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.55rem, 11vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
}
.hero__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 28px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  text-decoration: none;
  background: var(--forest);
  padding: 16px 26px;
  border-radius: 100px;
  box-shadow: 0 12px 28px rgba(29, 74, 56, 0.22);
  transition: transform 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.hero__cta svg { width: 20px; height: 20px; transition: transform 0.2s; }
.hero__cta:hover { background: var(--forest-deep); }
.hero__cta:hover svg { transform: translateX(4px); }
.hero__cta:active { transform: scale(0.97); }

.hero__earn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 24px 22px;
  background: var(--forest);
  color: #f6f1e6;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero__earn::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 98, 45, 0.35), transparent 68%);
}
.hero__earn-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.62);
  position: relative;
}
.hero__earn-value {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 12vw, 3.6rem);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  position: relative;
}
.hero__earn-prefix { color: #e8b089; }
.hero__earn-suffix {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(246, 241, 230, 0.7);
  margin-left: 8px;
}
.hero__earn-sub {
  font-size: 0.92rem;
  color: rgba(246, 241, 230, 0.72);
  margin: 4px 0 12px;
  position: relative;
}
.hero__earn-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.hero__earn-pills span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section { padding: 28px 0; }

.block-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.block-head__index {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--copper);
  background: rgba(196, 98, 45, 0.1);
  border-radius: 8px;
  padding: 3px 8px;
}
.block-head__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 6vw, 2.1rem);
  letter-spacing: -0.03em;
}

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 14px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(23, 21, 19, 0.04);
}
.fact__num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ink);
}
.fact__num small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--copper);
  margin-left: 3px;
}
.fact__cap {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.35;
}

.duties { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.duty {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.duty__step {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.duty__ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: #f3eee3;
  border-radius: 14px;
}
.duty__txt { font-size: 0.98rem; font-weight: 700; color: var(--ink); }

.pay {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.pay__main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.pay__big {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--forest);
  letter-spacing: -0.04em;
}
.pay__big-cap { font-size: 1rem; font-weight: 600; color: var(--muted); }
.pay__rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.pay__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  background: #faf7f0;
}
.pay__row span { color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.pay__row strong { font-weight: 800; color: var(--ink); font-size: 0.95rem; }
.pay__note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bento__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
}
.bento__card--wide { grid-column: span 2; }
.bento__card--schedule {
  grid-column: span 2;
  background: var(--forest);
  color: #f6f1e6;
  border-color: transparent;
}
.bento__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  background: #f3eee3;
  border-radius: 100px;
  padding: 8px 13px;
}
.needs { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.needs li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.needs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}
.sched { display: flex; flex-direction: column; gap: 6px; }
.sched__days {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 2.15rem;
  line-height: 1;
}
.sched__time { font-size: 1.15rem; font-weight: 800; color: #e8b089; }
.sched__type { font-size: 0.88rem; color: rgba(246, 241, 230, 0.7); }

.apply { padding-top: 12px; }
.apply__card {
  background: #1a1916;
  color: #f6f1e6;
  border-radius: 32px;
  padding: 40px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply__card::before {
  content: '';
  position: absolute;
  inset: auto -20% 40% -20%;
  height: 240px;
  background: radial-gradient(circle, rgba(42, 107, 77, 0.35), transparent 68%);
  pointer-events: none;
}
.apply__eyebrow,
.apply__title,
.apply__sub,
.apply__btns { position: relative; }
.apply__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8b089;
  margin-bottom: 12px;
}
.apply__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.apply__sub {
  font-size: 1rem;
  color: rgba(246, 241, 230, 0.7);
  margin-bottom: 28px;
}
.apply__btns { display: flex; flex-direction: column; gap: 12px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 18px;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn:hover { filter: brightness(1.06); }
.btn__ic { width: 21px; height: 21px; flex-shrink: 0; }
.btn--telegram {
  background: linear-gradient(135deg, var(--telegram), var(--telegram-d));
  box-shadow: 0 10px 24px rgba(34, 158, 217, 0.28);
}

.footer { padding: 28px 0 18px; }
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.footer span { font-size: 0.78rem; color: var(--faint); font-weight: 600; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  padding: 12px 16px calc(12px + var(--safe));
  background: rgba(243, 239, 230, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 760px) {
  :root { --maxw: 860px; }
  .hero { padding: 72px 0 36px; }
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 36px;
  }
  .hero__lead { font-size: 1.12rem; }
  .apply__btns { max-width: 360px; margin: 0 auto; }
  body { padding-bottom: 40px; }
  .dock { display: none; }
}

@media (min-width: 1024px) {
  :root { --maxw: 1080px; }
  .duties { display: grid; grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1.4fr 1fr 1fr; }
  .bento__card--wide { grid-column: span 3; }
  .bento__card--schedule { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
