@font-face {
  font-family: 'Estedad';
  src: url('/assets/fonts/Estedad.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f4f1e8;
  --paper-2: #eae5d8;
  --card: #fffdf7;
  --ink: #14171a;
  --ink-2: #3d4348;
  --ink-3: #767d84;

  --green: #0d5c43;
  --up: #17845e;
  --dn: #c0392f;
  --hi: #d8f24a;

  --wrap: 1160px;
  --pad: 22px;
  --bd: 2px solid var(--ink);
  --sh: 5px 5px 0 var(--ink);
  --sh-sm: 3px 3px 0 var(--ink);
  --r: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Estedad', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(20, 23, 26, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 26, .035) 1px, transparent 1px);
  background-size: 46px 46px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--hi); color: var(--ink); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

.skip {
  position: fixed;
  top: -80px;
  inset-inline-start: 20px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-weight: 700;
  transition: top .25s;
}
.skip:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.bar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--paper);
  border-bottom: var(--bd);
}
.bar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__m {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--paper);
  border: var(--bd);
  box-shadow: var(--sh-sm);
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--r);
}
.logo__t { display: flex; flex-direction: column; line-height: 1.25; }
.logo__t b { font-size: 16.5px; font-weight: 800; letter-spacing: -.01em; }
.logo__t i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ink-3);
  direction: ltr;
}

.menu { display: flex; gap: 26px; }
.menu a {
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.menu a:hover { border-bottom-color: var(--green); color: var(--green); }

.bar__side { display: flex; align-items: center; gap: 12px; }

.hb {
  display: none;
  width: 44px;
  height: 40px;
  background: var(--card);
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 10px 11px;
  flex-direction: column;
  justify-content: space-between;
}
.hb span { display: block; height: 2px; background: var(--ink); }
.hb.on { box-shadow: none; transform: translate(-3px, 3px); }

.b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 700;
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  background: var(--card);
  transition: transform .12s ease, box-shadow .12s ease, background .2s;
  white-space: nowrap;
}
.b svg { width: 19px; height: 19px; flex: none; }
.b:hover { transform: translate(3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.b:active { transform: translate(-3px, 3px); box-shadow: none; }

.b--fill { background: var(--green); color: #fff; }
.b--line { background: var(--card); }
.b--lg { padding: 15px 28px; font-size: 16px; box-shadow: var(--sh); }
.b--lg:hover { box-shadow: 8px 8px 0 var(--ink); }

.hero { padding: clamp(44px, 7vw, 84px) 0 0; }
.hero__in {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(48px, 7vw, 84px);
}

.tagpill {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  background: var(--hi);
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  margin-bottom: 26px;
}

.hero__h {
  font-size: clamp(40px, 7.6vw, 82px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.035em;
}
.hero__h mark {
  background: none;
  color: var(--green);
  position: relative;
  white-space: nowrap;
}
.hero__h mark::after {
  content: '';
  position: absolute;
  inset-inline: -4px;
  bottom: .12em;
  height: .16em;
  background: var(--hi);
  z-index: -1;
}

.hero__p {
  margin-top: 22px;
  font-size: clamp(16px, 1.9vw, 18.5px);
  color: var(--ink-2);
  max-width: 52ch;
}

.hero__b { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__n { margin-top: 18px; font-size: 13.5px; color: var(--ink-3); font-weight: 600; }

.hero__r { position: relative; }

.brief {
  background: var(--card);
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: 8px 8px 0 var(--ink);
}
.brief__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 700;
}
.brief__t { font-variant-numeric: tabular-nums; color: var(--hi); }

.brief__l { padding: 6px 0; }
.brief__l li {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px dashed rgba(20, 23, 26, .18);
}
.brief__l li:last-child { border-bottom: 0; }
.sym { font-weight: 800; font-size: 14.5px; }
.txt { font-size: 13.8px; color: var(--ink-2); line-height: 1.65; }
.chg { font-size: 13px; font-weight: 800; }
.chg.up { color: var(--up); }
.chg.dn { color: var(--dn); }

.brief__f {
  padding: 12px 18px;
  border-top: var(--bd);
  background: var(--paper-2);
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 600;
}

.stamp {
  position: absolute;
  inset-inline-start: -20px;
  bottom: -22px;
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--hi);
  border: var(--bd);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  transform: rotate(-11deg);
  line-height: 1.25;
}
.stamp b { font-size: 19px; font-weight: 900; }
.stamp span { font-size: 17px; font-weight: 900; }

.strip {
  background: var(--ink);
  color: var(--paper);
  border-block: var(--bd);
  overflow: hidden;
  padding: 11px 0;
}
.strip__t {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: run 38s linear infinite;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.strip__t i { color: var(--hi); font-style: normal; font-size: 9px; }
@keyframes run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.sc { padding: clamp(56px, 8vw, 104px) 0; }
.sc--soft { background: var(--paper-2); border-block: var(--bd); }
.sc--ink { background: var(--ink); color: var(--paper); border-block: var(--bd); }

.sh { max-width: 62ch; margin-bottom: clamp(34px, 4.5vw, 56px); }
.sk {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--green);
  margin-bottom: 12px;
}
.sh--inv .sk { color: var(--hi); }
.h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: -.025em;
}
.sp { margin-top: 14px; font-size: 15.5px; color: var(--ink-3); }
.sh--inv .sp { color: #a9b0b6; }

.day { display: grid; gap: 0; border-top: var(--bd); }
.day li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: var(--bd);
  align-items: start;
}
.day__c {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1.5;
}
.day h3 { font-size: 19px; font-weight: 800; }
.day p { margin-top: 6px; font-size: 15.5px; color: var(--ink-2); max-width: 58ch; }

.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.it {
  background: var(--card);
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 26px 22px 28px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.it:hover { transform: translate(3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.it__n {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 8px;
  background: var(--ink);
  color: var(--hi);
  font-size: 15px;
  font-weight: 900;
  border-radius: var(--r);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.it h3 { font-size: 18px; font-weight: 800; line-height: 1.6; }
.it p { margin-top: 9px; font-size: 15px; color: var(--ink-2); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ct {
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--paper);
  border-radius: var(--r);
  box-shadow: 5px 5px 0 var(--hi);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ct:hover { transform: translate(3px, -3px); box-shadow: 8px 8px 0 var(--hi); }
.ct__k {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 11px;
  background: var(--green);
  color: #fff;
  border-radius: var(--r);
  margin-bottom: 16px;
}
.ct h3 { font-size: 19px; font-weight: 800; line-height: 1.6; }
.ct__x { margin-top: 11px; font-size: 15px; color: var(--ink-2); flex: 1; }
.ct__m {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(20, 23, 26, .22);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-3);
}

.ab {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.ab__m { position: relative; }
.ph {
  aspect-ratio: 1 / 1;
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: 8px 8px 0 var(--green);
  overflow: hidden;
  background: var(--paper-2);
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph.nf img { display: none; }
.ph__fb {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: clamp(80px, 14vw, 132px);
  font-weight: 900;
  color: var(--green);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(13, 92, 67, .07) 12px, rgba(13, 92, 67, .07) 24px);
}
.ph.nf .ph__fb { display: grid; }
.ab__cap {
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-3);
  text-align: center;
}

.ab__p { margin-top: 16px; font-size: 16.5px; color: var(--ink-2); max-width: 58ch; }

.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.tags li {
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 14px;
  background: var(--card);
  border: var(--bd);
  border-radius: var(--r);
}

.ab__s { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.qs { display: grid; gap: 14px; max-width: 900px; }
.q {
  background: var(--card);
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.q summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.q summary::-webkit-details-marker { display: none; }
.q summary::after {
  content: '+';
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--hi);
  border: var(--bd);
  border-radius: var(--r);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}
.q[open] summary::after { content: '−'; background: var(--green); color: #fff; }
.q[open] summary { border-bottom: 2px dashed rgba(20, 23, 26, .2); }
.q p { padding: 16px 22px 20px; font-size: 15.5px; color: var(--ink-2); }

.end {
  background: var(--green);
  color: #fff;
  border-block: var(--bd);
  padding: clamp(56px, 8vw, 100px) 0;
}
.end__in { text-align: center; display: flex; flex-direction: column; align-items: center; }
.sk--inv { color: var(--hi); }
.end__h {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.35;
  max-width: 20ch;
}
.end__p { margin-top: 16px; font-size: 17px; color: #cfe3da; max-width: 46ch; }
.cn {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 16px;
  justify-content: center;
  width: 100%;
  text-align: start;
}
.cn a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  color: var(--ink);
  border: var(--bd);
  border-radius: var(--r);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cn a:hover { transform: translate(3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.cn a:active { transform: translate(-3px, 3px); box-shadow: none; }
.cn svg { width: 26px; height: 26px; flex: none; color: var(--green); }
.cn span { display: flex; flex-direction: column; line-height: 1.5; min-width: 0; }
.cn b { font-size: 15px; font-weight: 800; }
.cn i {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  overflow: hidden;
  text-overflow: ellipsis;
}

.ft { background: var(--ink); color: var(--paper); padding-top: 52px; }
.ft__in {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.ft .logo__m { box-shadow: 3px 3px 0 var(--paper); }
.ft .logo__t i { color: #8b9299; }
.ft__a p { margin-top: 16px; font-size: 14.5px; color: #a9b0b6; max-width: 34ch; }
.ft__c { display: flex; flex-direction: column; gap: 9px; }
.ft__t {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--hi);
  margin-bottom: 4px;
}
.ft__c a { font-size: 14.5px; color: #cfd3d7; transition: color .2s; }
.ft__c a:hover { color: var(--hi); }

.ft__risk {
  border-top: 1px solid rgba(244, 241, 232, .16);
  padding-top: 22px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.ft__risk p { font-size: 12.5px; color: #8b9299; }
.ft__cp { white-space: nowrap; }

@media (max-width: 1000px) {
  .hero__in, .ab { grid-template-columns: 1fr; }
  .hero__r { max-width: 480px; }
  .ab__m { max-width: 360px; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .grid3 { grid-template-columns: 1fr; }
  .ft__in { grid-template-columns: 1fr 1fr; }
  .day li { grid-template-columns: 130px 1fr; }
}

@media (max-width: 780px) {
  .hb { display: flex; }
  .bar__side .b { display: none; }
  .menu {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: var(--bd);
    padding: 8px var(--pad) 18px;
    display: none;
  }
  .menu.on { display: flex; }
  .menu a { padding: 13px 0; border-bottom: 1px dashed rgba(20, 23, 26, .2); }
  .bar { position: relative; }
}

@media (max-width: 620px) {
  :root { --pad: 16px; --sh: 4px 4px 0 var(--ink); }
  body { font-size: 15.5px; }
  .grid4 { grid-template-columns: 1fr; }
  .ft__in { grid-template-columns: 1fr; gap: 28px; }
  .day li { grid-template-columns: 1fr; gap: 8px; }
  .hero__b .b { flex: 1 1 100%; }
  .cn { grid-template-columns: 1fr; }
  .stamp { width: 78px; height: 78px; inset-inline-start: auto; inset-inline-end: -8px; bottom: -18px; }
  .brief__l li { grid-template-columns: 62px 1fr auto; gap: 9px; padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strip__t { animation-duration: 200s; }
  * { transition-duration: .01ms !important; }
}
